mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 10:35:46 -04:00
Initial community commit
This commit is contained in:
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
|
Reference in New Issue
Block a user