mirror of
https://github.com/open-develop/xenoborg.git
synced 2025-04-02 13:21:42 -04:00
16 lines
297 B
C
16 lines
297 B
C
#pragma once
|
|
|
|
/* DirectSound include(s) */
|
|
#include <dsound.h>
|
|
|
|
/* Sound buffer structure */
|
|
struct soundbuffer_t
|
|
{
|
|
IDirectSoundBuffer* dsb;
|
|
WAVEFORMATEX wfx;
|
|
DSBUFFERDESC dsbdesc;
|
|
};
|
|
|
|
/* DirectSound functions */
|
|
int enable_dsdrv( struct window_t* wnd );
|
|
void disable_dsdrv();
|