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.
|
|
/*----------------------------------------------------------------------
dbgfile.h Definitions for async tracing file ATF files
Copyright (C) 1994 Microsoft Corporation All rights reserved.
Authors: gordm Gord Mangione
History: 01/30/95 gordm Created. ----------------------------------------------------------------------*/
//
// Trace file types and definitions
//
// The binary trace file contains the trace statement of the
// following structure. All dwLengths include the entire structure
//
typedef struct tagFIXEDTRACE { WORD wSignature; WORD wLength; WORD wVariableLength; WORD wBinaryType; DWORD dwTraceMask; DWORD dwProcessId; DWORD dwThreadId; SYSTEMTIME TraceTime; DWORD dwParam; WORD wLine; WORD wFileNameOffset; WORD wFunctNameOffset; WORD wBinaryOffset; } FIXEDTRACE, *PFIXEDTRACE, FIXEDTR, *PFIXEDTR;
|