dosbox-wii/include/mouse.h

40 lines
1.2 KiB
C
Raw Normal View History

2009-05-02 23:03:37 +02:00
/*
2009-05-02 23:53:27 +02:00
* Copyright (C) 2002-2004 The DOSBox Team
2009-05-02 23:03:37 +02:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2009-05-03 00:02:15 +02:00
* GNU General Public License for more details.
2009-05-02 23:03:37 +02:00
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
2009-05-03 00:02:15 +02:00
/* $Id: mouse.h,v 1.7 2004/08/04 09:12:51 qbix79 Exp $ */
#ifndef _MOUSE_H_
#define _MOUSE_H_
2009-05-02 23:03:37 +02:00
void Mouse_ShowCursor(void);
void Mouse_HideCursor(void);
2009-05-03 00:02:15 +02:00
void Mouse_SetPS2State(bool use);
void Mouse_ChangePS2Callback(Bit16u pseg, Bit16u pofs);
2009-05-02 23:03:37 +02:00
void Mouse_CursorMoved(float x,float y);
void Mouse_CursorSet(float x,float y);
void Mouse_ButtonPressed(Bit8u button);
void Mouse_ButtonReleased(Bit8u button);
2009-05-02 23:20:05 +02:00
void Mouse_AutoLock(bool enable);
2009-05-02 23:43:00 +02:00
void Mouse_NewVideoMode(void);
2009-05-02 23:03:37 +02:00
2009-05-03 00:02:15 +02:00
#endif