2002-03-10 00:29:33 +01: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 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-10 00:29:33 +01:00
|
|
|
*/
|
|
|
|
|
2000-11-05 21:25:02 +01:00
|
|
|
#ifndef __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H
|
|
|
|
#define __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
2000-11-05 21:25:02 +01:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "dinput.h"
|
2007-07-07 07:36:09 +02:00
|
|
|
#include "wine/list.h"
|
2000-11-05 21:25:02 +01:00
|
|
|
|
|
|
|
/* Implementation specification */
|
2003-06-16 22:22:13 +02:00
|
|
|
typedef struct IDirectInputImpl IDirectInputImpl;
|
|
|
|
struct IDirectInputImpl
|
2000-11-05 21:25:02 +01:00
|
|
|
{
|
2007-07-12 06:51:32 +02:00
|
|
|
const IDirectInput7AVtbl *lpVtbl;
|
|
|
|
const IDirectInput7WVtbl *lpVtbl7w;
|
|
|
|
const IDirectInput8AVtbl *lpVtbl8a;
|
|
|
|
const IDirectInput8WVtbl *lpVtbl8w;
|
|
|
|
|
2007-07-07 07:36:09 +02:00
|
|
|
LONG ref;
|
2000-11-05 21:25:02 +01:00
|
|
|
|
2007-07-07 07:36:09 +02:00
|
|
|
CRITICAL_SECTION crit;
|
2007-07-07 07:36:18 +02:00
|
|
|
struct list entry; /* entry into list of all IDirectInputs */
|
2003-06-13 20:55:41 +02:00
|
|
|
|
2007-07-07 07:36:09 +02: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 21:25:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Function called by all devices that Wine supports */
|
2005-03-15 20:36:15 +01:00
|
|
|
struct dinput_device {
|
2004-06-04 20:06:37 +02:00
|
|
|
const char *name;
|
2005-05-16 10:44:14 +02: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 20:06:37 +02: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 20:36:15 +01:00
|
|
|
};
|
2000-11-05 21:25:02 +01:00
|
|
|
|
2005-03-15 20:36:15 +01: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 21:25:02 +01:00
|
|
|
|
2007-07-07 07:36:39 +02:00
|
|
|
extern void check_dinput_hooks(LPDIRECTINPUTDEVICE8A);
|
2007-07-07 07:36:30 +02:00
|
|
|
typedef void (*DI_EVENT_PROC)(LPDIRECTINPUTDEVICE8A, WPARAM, LPARAM);
|
2006-09-11 00:47:39 +02:00
|
|
|
|
2008-02-15 14:50:15 +01:00
|
|
|
extern void _dump_diactionformatA(LPDIACTIONFORMATA);
|
|
|
|
|
2000-11-05 21:25:02 +01:00
|
|
|
#endif /* __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H */
|