home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
-
- defines.h
- ---------
-
- Global defines for the TextView DLL demonstatration application
-
- This source is Copyright (c) Alan Phillips 1991. It may be freely used
- and adapted for non-commercial applications. Commercial and ShareWare
- authors should first obtain the written permission of the author.
-
- The source is edited with a tab size of 4.
-
- *****************************************************************************/
-
-
- /* This line defines how large you many lines you want to be stored in the
- * TextView window's circular buffer. When this buffer fills, the next message
- * will replace the oldest, and so on. The largest value you can specify is
- * 4096
- */
-
- #define TRW_SIZE 2000
-
- /* If you want to use a specific font in the TextView window, you should
- * uncomment this next line and define the symbol. The CreateFont code in the
- * start_tracing() routine below will then be compiled, and you can edit this
- * to select whichever font you require. With the line below commented out,
- * the system font will be used.
- */
-
- /* #define OWN_FONT */
-
-
-