1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _GV_PS3_HEADSET_H_
#define _GV_PS3_HEADSET_H_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// headers
#include "gvMain.h"
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// public interfaces
GVBool gviPS3HeadsetStartup(void);
void gviPS3HeadsetCleanup(void);
void gviPS3HeadsetThink(void);
int gviPS3HeadsetListDevices(GVDeviceInfo devices[], int maxDevices, GVDeviceType types);
GVDevice gviPS3HeadsetNewDevice(GVDeviceID deviceID, GVDeviceType type);
#endif // _GV_PS3_HEADSET_H_
|