OpenMoHAA 0.82.1
Loading...
Searching...
No Matches
gvPS2Eyetoy.h
1/*
2GameSpy Voice2 SDK
3Dan "Mr. Pants" Schoenblum
4dan@gamespy.com
5
6Copyright 2004 GameSpy Industries, Inc
7
818002 Skypark Circle
9Irvine, California 92614
10949.798.4200 (Tel)
11949.798.4299 (Fax)
12devsupport@gamespy.com
13http://gamespy.net
14*/
15
16#ifndef _GV_PS2_EYETOY_H_
17#define _GV_PS2_EYETOY_H_
18
19#include "gvMain.h"
20
21// this is set on all eyetoy GVDeviceID's
22// it prevents a conflict with headset id's, which also use a 0-based index
23#define GVI_EYETOY_DEVICEID_BIT 0x80000000
24
25GVBool gviPS2EyetoyStartup(void);
26void gviPS2EyetoyCleanup(void);
27
28int gviPS2EyetoyListDevices(GVDeviceInfo devices[], int maxDevices, GVDeviceType types);
29
30GVDevice gviPS2EyetoyNewDevice(GVDeviceID deviceID, GVDeviceType type);
31
32#endif
Definition gv.h:110