// 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_
|