mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 15:01:02 -05:00
14 lines
No EOL
304 B
C++
14 lines
No EOL
304 B
C++
#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
|