blob: 9f706c23714863504864560787a89da1c869ee5a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef _CONSOLECB_H
#define _CONSOLECB_H
#include <api/syscb/callbacks/syscbi.h>
namespace ConsoleCallback {
enum {
DEBUGMESSAGE=10,
};
};
/*
#define CONSOLECALLBACKI_PARENT SysCallbackI
class ConsoleCallbackI : public CONSOLECALLBACKI_PARENT {
public:
virtual FOURCC syscb_getEventType() { return SysCallback::CONSOLE; }
protected:
virtual int consolecb_outputString(int severity, const char *string)=0;
private:
virtual int syscb_notify(int msg, intptr_t param1 = 0, intptr_t param2 = 0);
};
*/
#endif
|