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 14:49:52 +02: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"
|
2011-11-26 10:30:07 -07:00
|
|
|
#include "dinputd.h"
|
2007-07-06 23:36:09 -06: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
|
|
|
{
|
2010-12-28 12:24:38 -07:00
|
|
|
IDirectInput7A IDirectInput7A_iface;
|
|
|
|
IDirectInput7W IDirectInput7W_iface;
|
|
|
|
IDirectInput8A IDirectInput8A_iface;
|
|
|
|
IDirectInput8W IDirectInput8W_iface;
|
2011-11-26 10:30:07 -07:00
|
|
|
IDirectInputJoyConfig8 IDirectInputJoyConfig8_iface;
|
2007-07-11 22:51:32 -06:00
|
|
|
|
2007-07-06 23:36:09 -06:00
|
|
|
LONG ref;
|
2000-11-05 20:25:02 +00:00
|
|
|
|
2011-07-05 07:19:17 -05:00
|
|
|
BOOL initialized;
|
2007-07-06 23:36:09 -06:00
|
|
|
CRITICAL_SECTION crit;
|
2007-07-06 23:36:18 -06:00
|
|
|
struct list entry; /* entry into list of all IDirectInputs */
|
2003-06-13 18:55:41 +00:00
|
|
|
|
2007-07-06 23:36:09 -06: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;
|
2013-05-20 14:10:02 -05:00
|
|
|
HRESULT (*enum_deviceA)(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEA lpddi, DWORD version, int id);
|
|
|
|
HRESULT (*enum_deviceW)(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEW lpddi, DWORD version, int id);
|
2011-01-23 12:44:20 -07:00
|
|
|
HRESULT (*create_device)(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPVOID *pdev, int unicode);
|
2005-03-15 19:36:15 +00:00
|
|
|
};
|
2000-11-05 20:25:02 +00:00
|
|
|
|
2011-05-17 23:16:42 +02:00
|
|
|
extern const struct dinput_device mouse_device DECLSPEC_HIDDEN;
|
|
|
|
extern const struct dinput_device keyboard_device DECLSPEC_HIDDEN;
|
|
|
|
extern const struct dinput_device joystick_linux_device DECLSPEC_HIDDEN;
|
|
|
|
extern const struct dinput_device joystick_linuxinput_device DECLSPEC_HIDDEN;
|
|
|
|
extern const struct dinput_device joystick_osx_device DECLSPEC_HIDDEN;
|
2000-11-05 20:25:02 +00:00
|
|
|
|
2011-05-17 23:16:42 +02:00
|
|
|
extern void check_dinput_hooks(LPDIRECTINPUTDEVICE8W) DECLSPEC_HIDDEN;
|
2009-02-21 12:54:37 -07:00
|
|
|
typedef int (*DI_EVENT_PROC)(LPDIRECTINPUTDEVICE8A, WPARAM, LPARAM);
|
2006-09-10 16:47:39 -06:00
|
|
|
|
2011-06-28 13:55:24 -03:00
|
|
|
extern void _copy_diactionformatAtoW(LPDIACTIONFORMATW, LPDIACTIONFORMATA) DECLSPEC_HIDDEN;
|
|
|
|
extern void _copy_diactionformatWtoA(LPDIACTIONFORMATA, LPDIACTIONFORMATW) DECLSPEC_HIDDEN;
|
2008-02-15 14:50:15 +01:00
|
|
|
|
2011-09-01 15:34:35 -03:00
|
|
|
extern HRESULT _configure_devices(IDirectInput8W *iface, LPDICONFIGUREDEVICESCALLBACK lpdiCallback, LPDICONFIGUREDEVICESPARAMSW lpdiCDParams, DWORD dwFlags, LPVOID pvRefData) DECLSPEC_HIDDEN;
|
|
|
|
|
2012-08-24 14:04:52 -03:00
|
|
|
extern WCHAR* get_mapping_path(const WCHAR *device, const WCHAR *username) DECLSPEC_HIDDEN;
|
|
|
|
|
2010-02-02 00:11:49 +01:00
|
|
|
#define IS_DIPROP(x) (((ULONG_PTR)(x) >> 16) == 0)
|
|
|
|
|
2011-06-28 13:54:36 -03:00
|
|
|
#define DIKEYBOARD_MASK 0x81000000
|
|
|
|
#define DIMOUSE_MASK 0x82000000
|
2011-07-21 15:36:31 -03:00
|
|
|
#define DIGENRE_ANY 0xFF000000
|
2011-06-28 13:54:36 -03:00
|
|
|
|
2000-11-05 20:25:02 +00:00
|
|
|
#endif /* __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H */
|