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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
/* Implementation specification */
|
2003-06-16 22:22:13 +02:00
|
|
|
typedef struct IDirectInputImpl IDirectInputImpl;
|
|
|
|
struct IDirectInputImpl
|
2000-11-05 21:25:02 +01:00
|
|
|
{
|
2002-06-14 02:39:44 +02:00
|
|
|
LPVOID lpVtbl;
|
|
|
|
DWORD ref;
|
2000-11-05 21:25:02 +01:00
|
|
|
|
2002-06-14 02:39:44 +02:00
|
|
|
/* Used to have an unique sequence number for all the events */
|
|
|
|
DWORD evsequence;
|
2003-06-13 20:55:41 +02:00
|
|
|
|
|
|
|
int version;
|
2000-11-05 21:25:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Function called by all devices that Wine supports */
|
|
|
|
typedef struct dinput_device {
|
2004-06-04 20:06:37 +02:00
|
|
|
INT pref;
|
|
|
|
const char *name;
|
|
|
|
BOOL (*enum_deviceA)(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEA lpddi, int version);
|
|
|
|
BOOL (*enum_deviceW)(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTANCEW lpddi, int version);
|
|
|
|
HRESULT (*create_deviceA)(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEA* pdev);
|
|
|
|
HRESULT (*create_deviceW)(IDirectInputImpl *dinput, REFGUID rguid, REFIID riid, LPDIRECTINPUTDEVICEW* pdev);
|
2000-11-05 21:25:02 +01:00
|
|
|
} dinput_device;
|
|
|
|
|
2003-06-16 22:22:13 +02:00
|
|
|
extern void dinput_register_device(dinput_device *device);
|
2000-11-05 21:25:02 +01:00
|
|
|
|
2002-12-24 02:18:21 +01:00
|
|
|
extern HINSTANCE DINPUT_instance;
|
|
|
|
|
2000-11-05 21:25:02 +01:00
|
|
|
#endif /* __WINE_DLLS_DINPUT_DINPUT_PRIVATE_H */
|