windows-nt/Source/XPSP1/NT/ds/netapi/inc/traceapi.h

31 lines
755 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*
*===================================================================
* Copyright (c) 1995, Microsoft Corporation
*
* File: traceapi.h
*
* History:
* t-abolag 6-June-1995 created
*
* API functions exported by Trace DLL
*===================================================================
*/
#ifndef _TRACEAPI_H_
#define _TRACEAPI_H_
DWORD FAR PASCAL TraceRegister(LPCSTR lpszService);
VOID FAR PASCAL TraceDeregister(DWORD dwID);
VOID FAR PASCAL TracePrintf(DWORD dwID,
LPCSTR lpszFormat,
...);
VOID FAR PASCAL TraceVprintf(DWORD dwID,
LPCSTR lpszFormat,
va_list arglist);
#endif /* _TRACEAPI_H_ */