home *** CD-ROM | disk | FTP | other *** search
-
- // Demensions
-
- #define QUARTER_INCH 25
- #define HALF_INCH (2 * QUARTER_INCH)
- #define INCH (4 * QUARTER_INCH)
- #define EIGHTH_INCH ((int)(QUARTER_INCH /2))
-
- // Defining printable characters
- #define FIRST_CHAR 32
- #define LAST_CHAR 255
-
- // Font Size Limits
- #define MAX_FONT_SIZE 72 // Max is 72 Points
- #define MIN_FONT_SIZE 4 // Min is 4 Points
-
- // Border Size Limits
- #define MAX_WIDTH_SIZE 8 // Max is 8 Points
- #define MIN_WIDTH_SIZE 1 // Min is 1 Point
-
- // Column limits
- #define MAX_COLUMNS 8 // Max Number of columns is 8
-
- // Print Styles for Paragraphs & Columns
- #define BOLD_FONT 0x0001
- #define ITALIC_FONT 0x0002
- #define TOP_BORDER 0x0004
- #define LEFT_BORDER 0x0008
- #define RIGHT_BORDER 0x0010
- #define BOTTOM_BORDER 0x0020
- #define CENTER_JUST 0x0040
- #define RIGHT_JUST 0x0080
- #define CHECK_BOX 0x0100
-
- #define IDS_QUEUE_NAME 0x5000
-
-