Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
14
Src/Wasabi/api/syscb/callbacks/consolecb.cpp
Normal file
14
Src/Wasabi/api/syscb/callbacks/consolecb.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include <precomp.h>
|
||||
#if 0
|
||||
#include "consolecb.h"
|
||||
|
||||
using namespace ConsoleCallback;
|
||||
|
||||
int ConsoleCallbackI::syscb_notify(int msg, int param1, int param2) {
|
||||
switch (msg) {
|
||||
case DEBUGMESSAGE:
|
||||
return consolecb_outputString(param1, reinterpret_cast<const char *>(param2));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue