mirror of https://github.com/tongzx/nt5src
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
40 lines
2.1 KiB
/**MOD+**********************************************************************/
|
|
/* Module: ztrcdata.c */
|
|
/* */
|
|
/* Purpose: Internal tracing data proxy file */
|
|
/* */
|
|
/* Copyright(C) Microsoft Corporation 1997 */
|
|
/* */
|
|
/****************************************************************************/
|
|
/** Changes:
|
|
* $Log: Y:/logs/trc/ztrcdata.c_v $
|
|
*
|
|
* Rev 1.2 03 Jul 1997 13:29:10 AK
|
|
* SFR0000: Initial development completed
|
|
**/
|
|
/**MOD-**********************************************************************/
|
|
|
|
#include <adcg.h>
|
|
|
|
/****************************************************************************/
|
|
/* */
|
|
/* INCLUDES */
|
|
/* */
|
|
/****************************************************************************/
|
|
/****************************************************************************/
|
|
/* Determine our target OS and include the appropriate header file. */
|
|
/* Currently we support: */
|
|
/* */
|
|
/* Windows NT : wtrcdata.c */
|
|
/* UNIX : xtrcdata.c */
|
|
/* MacOS 7 : mtrcdata.c */
|
|
/* */
|
|
/****************************************************************************/
|
|
#ifdef OS_WIN32
|
|
#include <wtrcdata.c>
|
|
#elif defined( OS_UNIX )
|
|
#include <xtrcdata.c>
|
|
#elif defined( OS_MAC7 )
|
|
#include <mtrcdata.c>
|
|
#endif
|
|
|