layout
This commit is contained in:
parent
1f38fcdc74
commit
760db962ea
12 changed files with 273 additions and 154 deletions
17
audio/pthread/decl.c
Normal file
17
audio/pthread/decl.c
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#include <MDE/Audio/Audio.h>
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
typedef struct driver {
|
||||
driver_context_t context;
|
||||
|
||||
int init;
|
||||
int frames;
|
||||
|
||||
MDEAudioHandler handler;
|
||||
void* user;
|
||||
|
||||
int quit;
|
||||
pthread_t thread;
|
||||
pthread_mutex_t mutex;
|
||||
} driver_t;
|
||||
Loading…
Add table
Add a link
Reference in a new issue