mirror of
https://github.com/open-goal/jak-project
synced 2026-08-21 23:00:45 -04:00
check in existing work
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
/*!
|
||||
* @file ksound.cpp
|
||||
* There's not much here. My guess is this was set up as framework to match the kmachine.cpp format,
|
||||
* but whoever did the sound didn't use this.
|
||||
*/
|
||||
|
||||
#include "ksound.h"
|
||||
#include "kscheme.h"
|
||||
#include "kdgo.h"
|
||||
|
||||
/*!
|
||||
* Does nothing!
|
||||
*/
|
||||
void InitSound() {}
|
||||
|
||||
/*!
|
||||
* Does nothing!
|
||||
*/
|
||||
void ShutdownSound() {}
|
||||
|
||||
/*!
|
||||
* Set up some functions which are somewhat related to sound.
|
||||
*/
|
||||
void InitSoundScheme() {
|
||||
make_function_symbol_from_c("rpc-call", (void*)RpcCall_wrapper);
|
||||
make_function_symbol_from_c("rpc-busy?", (void*)RpcBusy);
|
||||
make_function_symbol_from_c("test-load-dgo-c", (void*)LoadDGOTest);
|
||||
}
|
||||
Reference in New Issue
Block a user