blob: 936f7285cdb8977aa8c7c5f125114fa8f1c5c7a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/************************************************************/
/* Windows Write, Copyright 1985-1992 Microsoft Corporation */
/************************************************************/
#ifdef DEBUG
#ifdef SCRIBBLE
#define Scribble(a, b) fnScribble(a, b)
#else /* not SCRIBBLE */
#define Scribble(a, b)
#endif /* not SCRIBBLE */
#else /* not DEBUG */
#define Scribble(a, b)
#endif /* not DEBUG */
|