mirror of https://github.com/lianthony/NT4.0
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.
20 lines
450 B
20 lines
450 B
//
|
|
// Winnt 5.0 tracking is compiled into S.U.R. debug build, but is
|
|
// disabled using a global boolean.
|
|
//
|
|
// This is so that we can develop the tracking using the latest S.U.R.
|
|
// bits without affecting the retail S.U.R. and so we don't have to
|
|
// use Cairo to develop the link tracking.
|
|
//
|
|
#if defined(WINNT) && DBG && defined(UNICODE)
|
|
#define ENABLE_TRACK 1
|
|
|
|
extern
|
|
#ifdef __cplusplus
|
|
"C"
|
|
#endif
|
|
int g_fNewTrack;
|
|
|
|
#define DM_TRACK 0x0100
|
|
|
|
#endif
|