2002-03-09 23:29:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2000 Lionel Ulmer
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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 GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-09 23:29:33 +00:00
|
|
|
*/
|
|
|
|
|
2000-11-05 20:25:02 +00:00
|
|
|
#ifndef __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H
|
|
|
|
#define __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H
|
|
|
|
|
2003-09-05 23:08:26 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
2000-11-05 20:25:02 +00:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "dinput.h"
|
2007-07-07 05:36:09 +00:00
|
|
|
#include "wine/list.h"
|
2000-11-05 20:25:02 +00:00
|
|
|
|
|
|
|
/* Implementation specification */
|
2003-06-16 20:22:13 +00:00
|
|
|
typedef struct IDirectInputImpl IDirectInputImpl;
|
|
|
|
struct IDirectInputImpl
|
2000-11-05 20:25:02 +00:00
|
|
|
{
|
2007-07-12 04:51:32 +00:00
|
|
|
const IDirectInput7AVtbl *lpVtbl;
|
|
|
|
const IDirectInput7WVtbl *lpVtbl7w;
|
|
|
|
const IDirectInput8AVtbl *lpVtbl8a;
|
|
|
|
const IDirectInput8WVtbl *lpVtbl8w;
|
|
|
|
|
2007-07-07 05:36:09 +00:00
|
|
|
LONG ref;
|
2000-11-05 20:25:02 +00:00
|
|
|
|
2007-07-07 05:36:09 +00:00
|
|
|
CRITICAL_SECTION crit;
|
2007-07-07 05:36:18 +00:00
|
|
|
struct list entry; /* entry into list of all IDirectInputs */
|
2003-06-13 18:55:41 +00:00
|
|
|
|
2007-07-07 05:36:09 +00:00
|
|
|
DWORD evsequence; /* unique sequence number for events */
|
|
|
|
DWORD dwVersion; /* direct input version number */
|
|
|
|
struct list devices_list; /* list of all created dinput devices */
|
2000-11-05 20:25:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Function called by all devices that Wine supports */
|
2005-03-15 19:36:15 +00:00
|
|
|
struct dinput_device {
|
2004-06-04 18:06:37 +00:00
|
|
|
const char *name;
|
2005-05-16 08:44:14 +00:00
|
|
|
BOOL (*enum_deviceA)(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEA lpddi, DWORD version, int id);
|
|
|
|
BOOL (*enum_deviceW)(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEW lpddi, DWORD version, int id);
|
2004-06-04 18:06:37 +00:00
|
|
|
HRESULT (*create_deviceA)(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEA* pdev);
|
|
|
|
HRESULT (*create_deviceW)(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEW* pdev);
|
2005-03-15 19:36:15 +00:00
|
|
|
};
|
2000-11-05 20:25:02 +00:00
|
|
|
|
2005-03-15 19:36:15 +00:00
|
|
|
extern const struct dinput_device mouse_device;
|
|
|
|
extern const struct dinput_device keyboard_device;
|
|
|
|
extern const struct dinput_device joystick_linux_device;
|
|
|
|
extern const struct dinput_device joystick_linuxinput_device;
|
2000-11-05 20:25:02 +00:00
|
|
|
|
2002-12-24 01:18:21 +00:00
|
|
|
extern HINSTANCE DINPUT_instance;
|
|
|
|
|
2007-07-07 05:36:39 +00:00
|
|
|
extern void check_dinput_hooks(LPDIRECTINPUTDEVICE8A);
|
2007-07-07 05:36:30 +00:00
|
|
|
typedef void (*DI_EVENT_PROC)(LPDIRECTINPUTDEVICE8A, WPARAM, LPARAM);
|
2006-09-10 22:47:39 +00:00
|
|
|
|
2000-11-05 20:25:02 +00:00
|
|
|
#endif /* __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H */
|