mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-30 06:37:57 +03:00
26 lines
497 B
C
26 lines
497 B
C
![]() |
/*
|
||
|
GameSpy Voice2 SDK
|
||
|
Dan "Mr. Pants" Schoenblum
|
||
|
dan@gamespy.com
|
||
|
|
||
|
Copyright 2004 GameSpy Industries, Inc
|
||
|
|
||
|
devsupport@gamespy.com
|
||
|
http://gamespy.net
|
||
|
*/
|
||
|
|
||
|
#ifndef _GV_DIRECT_SOUND_H_
|
||
|
#define _GV_DIRECT_SOUND_H_
|
||
|
|
||
|
#include "gvMain.h"
|
||
|
|
||
|
GVBool gviHardwareStartup(HWND hWnd);
|
||
|
void gviHardwareCleanup(void);
|
||
|
void gviHardwareThink(void);
|
||
|
|
||
|
int gviHardwareListDevices(GVDeviceInfo devices[], int maxDevices, GVDeviceType types);
|
||
|
|
||
|
GVDevice gviHardwareNewDevice(GVDeviceID deviceID, GVDeviceType type);
|
||
|
|
||
|
#endif
|