forked from bigmacd/trapreceiver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogQueueClient.h
More file actions
41 lines (30 loc) · 879 Bytes
/
LogQueueClient.h
File metadata and controls
41 lines (30 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) 2013 trapreceiver.com
// All rights reserved.
//
// Redistribution and use of executable software is never
// permitted without the express written permission of
// trapreceiver.com
//
// Distribution of the source is never permitted without
// the express written permission of
// trapreceiver.com
//
// THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
// WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#ifndef __LOGQUEUECLIENT_H__
#define __LOGQUEUECLIENT_H__
//#include <windows.h>
#include <afxwin.h>
class LogQueueClient
{
private:
HANDLE mQueueHandle;
BOOL Connect();
protected:
public:
LogQueueClient();
~LogQueueClient();
void Put(unsigned char* message, unsigned int length);
};
#endif