home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April (Special) / Chip-Special_1997-04_cd.bin / canon / bj364 / bj364d1.exe / BJL.BIN / SOURCE.ZIP / BJL_INST.H < prev    next >
Text File  |  1996-05-03  |  4KB  |  91 lines

  1. // ========================================================================================
  2. //    Installer for BJ Printer Setup Utility Program
  3. //    DOS Base
  4. //    BJ Printer (such as the A250 and A5311)
  5. //
  6. //    1. Version 1.00 [August 18, '95]       : Tsukasa Jackie AIBA    : create new
  7. //    2. Version 1.01 [September 21, '95]    : Tsukasa Jackie AIBA    : add A240
  8. //    3. Version 1.02 [September 26, '95]    : Tsukasa Jackie AIBA    : mono display
  9. //
  10. //    Copyright Canon Information Systems, Inc. 1995
  11. // ========================================================================================
  12.  
  13. // ***********************************************************************
  14. //        define global macro
  15. // ***********************************************************************
  16.  
  17. #define        INI_FILE        "bjl.reg"
  18.  
  19. #define        SVGA_COLOR      2            // Special
  20. #define        BW_COLOR        1            // Black & White
  21. #define        CO_COLOR        0            // Color
  22.  
  23. #define        BK_CHAR         0xB0         // 0xB2 : background pattern
  24. #define        BK_COLOR1       0x07         // 0x03 : background
  25. #define        BK_COLOR2       0x08         // 0x01 : shadow
  26. #define        BK_COLOR3       0x08         // 0x01 : shadow2
  27.  
  28. #define        WHITE_RED       0x47
  29. #define        RED_WHITE       0x74
  30. #define        WHITE_CYAN      0x37
  31. #define        CYAN_WHITE      0x73
  32. #define        WHITE_BLUE      0x17
  33. #define        BLUE_WHITE      0x71
  34. #define        WHITE_GRAY      0x87
  35. #define        GRAY_WHITE      0x78
  36. #define        GRAY_BLUE       0x38
  37. #define        BLUE_GRAY       0x83
  38. #define        CYAN_BLUE       0x13
  39. #define        BLUE_CYAN       0x31
  40. #define        GRAY_CYAN       0xB8
  41. #define        CYAN_GRAY       0x8B
  42. #define        GRAY_YELLOW     0xE8
  43. #define        YELLOW_GRAY     0x8E
  44. #define        BLACK_GRAY      0x80
  45. #define        GRAY_BLACK      0x08
  46. #define        BLACK_RED       0x40
  47. #define        RED_BLACK       0x04
  48. #define        WHITE_BLACK     0x07
  49. #define        BLACK_WHITE     0x70
  50. #define        WHITE_BROWN     0x67
  51. #define        BROWN_WHITE     0x76
  52. #define        BLACK_BROWN     0x60
  53. #define        BROWN_BLACK     0x06
  54. #define        BLACK_CYAN      0x30
  55. #define        CYAN_BLACK      0x03
  56. #define        BLACK_GREEN     0x20
  57. #define        GREEN_BLACK     0x02
  58. #define        BLACK_BLUE      0x10
  59. #define        BLUE_BLACK      0x01
  60. #define        BLACK_YELLOW    0xE0
  61. #define        YELLOW_BLACK    0x0E
  62. #define        GRAY_GREEN      0xA8
  63. #define        GREEN_GRAY      0x8A
  64. #define        WHITE_GREEN     0x27
  65. #define        GREEN_WHITE     0x72
  66. #define        BLACK_LCYAN     0xB0
  67. #define        LCYAN_BLACK     0x0B
  68.  
  69. #define        OKAY            24
  70. #define        CANCEL          25
  71.  
  72. #define        OKAY_STR        "24"
  73. #define        CANCEL_STR      "25"
  74.  
  75. #define        FILE_ERROR      -1           // _open() error
  76.  
  77. // ***********************************************************************
  78.  
  79. int                     colors;
  80. static sed_type         window_0,    window_1,    window_5;    //
  81. sed_type                sedlist[1];
  82.  
  83. // ***********************************************************************
  84. // ---------------------------------------------------- bjl_inst.c
  85.  
  86.                         spc_func        (spc_Jump);
  87.  
  88. int                     EndDisplay      (void);
  89.  
  90. int         olddrive;            // to keep track of original drive; SK 4/30/96
  91. static char path[_MAX_PATH];