consolecb.cpp 304 B

1234567891011121314
  1. #include <precomp.h>
  2. #if 0
  3. #include "consolecb.h"
  4. using namespace ConsoleCallback;
  5. int ConsoleCallbackI::syscb_notify(int msg, int param1, int param2) {
  6. switch (msg) {
  7. case DEBUGMESSAGE:
  8. return consolecb_outputString(param1, reinterpret_cast<const char *>(param2));
  9. }
  10. return 0;
  11. }
  12. #endif