home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / printq14.zip / HELLOQ3 / HELLO.H < prev    next >
Text File  |  1994-04-25  |  1KB  |  42 lines

  1. /* hello.h: include file for Hello queue/2 */
  2. /* Version 1.3, (C) Peter Wansch, 1993     */
  3. /* created: 93-8-16                        */
  4.  
  5. /* windows, dialog boxes and message boxes */
  6. #define WD_MAIN                 300
  7. #define DB_PRODINFO             301
  8. #define DB_QUERYPRINT           302
  9. #define ID_MESSAGEBOX           303
  10.  
  11. /* menus and menu items */
  12. #define SM_OPTIONS              304
  13. #define MI_EXIT                 305
  14. #define MI_INFO                 306
  15. #define MI_SETUP                307
  16. #define MI_PRINT                308
  17. #define MI_FONT                 309
  18.  
  19. /* controls */
  20. #define LB_QUEUES               310
  21. #define PB_JOBPROP              311
  22.  
  23. /* timers */
  24. #define TI_LOGO                 0
  25.  
  26. /* printer font */
  27. #define LCID_NORMAL             1
  28.  
  29. /* miscellaneous constants */
  30. #define ID_NULL                 -1
  31. #define LENGTH_STRING           256
  32. #define RETURN_ERROR            1 /* return value for exit */
  33. #define NUM_OF_LINES            24
  34.  
  35. /* function prototypes */
  36. int main(void);
  37. MRESULT EXPENTRY wpMain(HWND, ULONG, MPARAM, MPARAM);
  38. MRESULT EXPENTRY dpProdInfo(HWND, ULONG, MPARAM, MPARAM);
  39. MRESULT EXPENTRY dpQueryQInfo(HWND, ULONG, MPARAM, MPARAM);
  40. void InitOut(void);
  41. VOID SetFont(void);
  42.