Leaked source code of windows server 2003
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.

39 lines
911 B

  1. /*----------------------------------------------------------------------
  2. dbgfile.h
  3. Definitions for async tracing file ATF files
  4. Copyright (C) 1994 Microsoft Corporation
  5. All rights reserved.
  6. Authors:
  7. gordm Gord Mangione
  8. History:
  9. 01/30/95 gordm Created.
  10. ----------------------------------------------------------------------*/
  11. //
  12. // Trace file types and definitions
  13. //
  14. // The binary trace file contains the trace statement of the
  15. // following structure. All dwLengths include the entire structure
  16. //
  17. typedef struct tagFIXEDTRACE
  18. {
  19. WORD wSignature;
  20. WORD wLength;
  21. WORD wVariableLength;
  22. WORD wBinaryType;
  23. DWORD dwTraceMask;
  24. DWORD dwProcessId;
  25. DWORD dwThreadId;
  26. SYSTEMTIME TraceTime;
  27. DWORD dwParam;
  28. WORD wLine;
  29. WORD wFileNameOffset;
  30. WORD wFunctNameOffset;
  31. WORD wBinaryOffset;
  32. } FIXEDTRACE, *PFIXEDTRACE, FIXEDTR, *PFIXEDTR;