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

  1. /*
  2. *===================================================================
  3. * Copyright (c) 1995, Microsoft Corporation
  4. *
  5. * File: traceapi.h
  6. *
  7. * History:
  8. * t-abolag 6-June-1995 created
  9. *
  10. * API functions exported by Trace DLL
  11. *===================================================================
  12. */
  13. #ifndef _TRACEAPI_H_
  14. #define _TRACEAPI_H_
  15. DWORD FAR PASCAL TraceRegister(LPCSTR lpszService);
  16. VOID FAR PASCAL TraceDeregister(DWORD dwID);
  17. VOID FAR PASCAL TracePrintf(DWORD dwID,
  18. LPCSTR lpszFormat,
  19. ...);
  20. VOID FAR PASCAL TraceVprintf(DWORD dwID,
  21. LPCSTR lpszFormat,
  22. va_list arglist);
  23. #endif /* _TRACEAPI_H_ */