diff options
Diffstat (limited to 'include/m_protosvc.h')
-rw-r--r-- | include/m_protosvc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index 264adac76d..b8259911ff 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -715,7 +715,10 @@ typedef struct { typedef struct {
DWORD flags;
DWORD timestamp; //unix time
- char *szMessage;
+ union {
+ char *szMessage;
+ TCHAR *tszMessage;
+ };
LPARAM lParam; //extra space for the network level protocol module
} PROTORECVEVENT;
#define PREF_CREATEREAD 1 //create the database event with the 'read' flag set
|