8 lines
258 B
C
8 lines
258 B
C
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
char* sound_path(const char *name) { return NULL; }
|
|
bool check_sound_path(const char *path) { return NULL; }
|
|
void* load_sound(const char *path, unsigned int flags) { return NULL; }
|
|
void unload_sound(void *vmus) { }
|