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.

40 lines
2.1 KiB

  1. /**MOD+**********************************************************************/
  2. /* Module: ztrcdata.c */
  3. /* */
  4. /* Purpose: Internal tracing data proxy file */
  5. /* */
  6. /* Copyright(C) Microsoft Corporation 1997 */
  7. /* */
  8. /****************************************************************************/
  9. /** Changes:
  10. * $Log: Y:/logs/trc/ztrcdata.c_v $
  11. *
  12. * Rev 1.2 03 Jul 1997 13:29:10 AK
  13. * SFR0000: Initial development completed
  14. **/
  15. /**MOD-**********************************************************************/
  16. #include <adcg.h>
  17. /****************************************************************************/
  18. /* */
  19. /* INCLUDES */
  20. /* */
  21. /****************************************************************************/
  22. /****************************************************************************/
  23. /* Determine our target OS and include the appropriate header file. */
  24. /* Currently we support: */
  25. /* */
  26. /* Windows NT : wtrcdata.c */
  27. /* UNIX : xtrcdata.c */
  28. /* MacOS 7 : mtrcdata.c */
  29. /* */
  30. /****************************************************************************/
  31. #ifdef OS_WIN32
  32. #include <wtrcdata.c>
  33. #elif defined( OS_UNIX )
  34. #include <xtrcdata.c>
  35. #elif defined( OS_MAC7 )
  36. #include <mtrcdata.c>
  37. #endif