blob: a91c33b9ae3e6db908cb9a467da5a02e1e0b58a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|