OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
gvCustomDevice.h
1/*
2GameSpy Voice2 SDK
3Dan "Mr. Pants" Schoenblum
4dan@gamespy.com
5
6Copyright 2004 GameSpy Industries, Inc
7
8devsupport@gamespy.com
9http://gamespy.net
10*/
11
12#ifndef _GV_CUSTOM_DEVICE_H_
13#define _GV_CUSTOM_DEVICE_H_
14
15#include "gvMain.h"
16#include "gvDevice.h"
17
18GVDevice gviCustomNewDevice(GVDeviceType type);
19
20GVBool gviGetCustomPlaybackAudio(GVIDevice * device, GVSample * audio, int numSamples);
21
22GVBool gviSetCustomCaptureAudio(GVDevice device, const GVSample * audio, int numSamples,
23 GVByte * packet, int * packetLen, GVFrameStamp * frameStamp, GVScalar * volume);
24
25#endif
Definition gvDevice.h:58