1
0
Fork 0

correct mouse maximal y-value for non-standard font heights in text mode (fixes mouse in lba2 installer)

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3117
This commit is contained in:
Sebastian Strohhäcker 2008-03-08 22:05:05 +00:00
parent 39efc20d3e
commit cf48084cea
2 changed files with 19 additions and 10 deletions

View file

@ -16,16 +16,20 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: mouse.h,v 1.13 2007-01-08 19:45:37 qbix79 Exp $ */
#ifndef DOSBOX_MOUSE_H
#define DOSBOX_MOUSE_H
/* $Id: mouse.h,v 1.14 2008-03-08 22:04:44 c2woody Exp $ */
#ifndef DOSBOX_MOUSE_H
#define DOSBOX_MOUSE_H
void Mouse_ShowCursor(void);
void Mouse_HideCursor(void);
bool Mouse_SetPS2State(bool use);
void Mouse_ChangePS2Callback(Bit16u pseg, Bit16u pofs);
bool Mouse_SetPS2State(bool use);
void Mouse_ChangePS2Callback(Bit16u pseg, Bit16u pofs);
void Mouse_CursorMoved(float xrel,float yrel,float x,float y,bool emulate);
void Mouse_CursorSet(float x,float y);