Alejandro Acuña
2024-10-25 bf65497ed7abf9c669eb3cc0ba219dfa4494b759
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//  Trace Server.h
 
//  used by both client and server
 
#ifndef IMPLEMENT_DLL_INTERFACE
#define DLLFUNCTION _declspec(dllimport)
#else
#define DLLFUNCTION _declspec(dllexport)
#endif
 
#ifndef TRACE_SERVER_H_
#define TRACE_SERVER_H_
 
//  the DLL interface
 
DLLFUNCTION int         InitializeTracing();
DLLFUNCTION int         UninitializeTracing();
DLLFUNCTION char *      GetTraceBuffer();
DLLFUNCTION int         Trace(char *traceBuffer);
 
#endif  // TRACE_SERVER_H_