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.

50 lines
2.6 KiB

  1. /**MOD+**********************************************************************/
  2. /* Module: wtrcdata.c */
  3. /* */
  4. /* Purpose: Internal tracing data - Windows specific. */
  5. /* */
  6. /* Copyright(C) Microsoft Corporation 1997 */
  7. /* */
  8. /****************************************************************************/
  9. /** Changes:
  10. * $Log: Y:/logs/trc/wtrcdata.c_v $
  11. *
  12. * Rev 1.4 09 Jul 1997 18:03:10 AK
  13. * SFR1016: Initial changes to support Unicode
  14. *
  15. * Rev 1.3 03 Jul 1997 13:28:56 AK
  16. * SFR0000: Initial development completed
  17. **/
  18. /**MOD-**********************************************************************/
  19. #ifndef DLL_DISP
  20. /****************************************************************************/
  21. /* Handle to the trace DLL mutex object. */
  22. /****************************************************************************/
  23. DC_DATA(HANDLE, trchMutex, 0);
  24. /****************************************************************************/
  25. /* Handle and pointer to the trace DLL shared data. */
  26. /****************************************************************************/
  27. DC_DATA(PTRC_SHARED_DATA, trcpSharedData, 0);
  28. /****************************************************************************/
  29. /* Trace file name array. */
  30. /****************************************************************************/
  31. DC_DATA_ARRAY_NULL(PDCTCHAR, trcpFiles, TRC_NUM_FILES, DC_STRUCT1(0));
  32. /****************************************************************************/
  33. /* Per-process status flag. */
  34. /****************************************************************************/
  35. DC_DATA(DCINT32, trcProcessStatus, 0);
  36. /****************************************************************************/
  37. /* Flag to indicate if we created the shared data MMF, opened/created the */
  38. /* trace files. We assume that we have created them. */
  39. /****************************************************************************/
  40. DC_DATA(DCBOOL, trcCreatedTraceFiles, TRUE);
  41. #endif
  42. #include <ntrcdata.c>