Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
755 B

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