home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / os2sdk / os2sdk12 / accel / accel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-20  |  832 b   |  40 lines

  1. /*
  2.     ACCEL header file
  3.     Created by Microsoft Corporation, 1989
  4. */
  5. #define IDR_ACCEL    1
  6. /*
  7.     Menu items
  8. */
  9. #define IDM_FILE    10
  10. #define IDM_CREATE    100
  11. #define IDM_DELETE    101
  12. #define IDM_ABOUT    102
  13. /*
  14.     Dialog boxes
  15. */
  16. #define IDD_ABOUT    1
  17. #define    IDD_CREATE    2
  18. #define    IDD_HELP    3
  19. /*
  20.     IDD_CREATE dialog items
  21. */
  22. #define IDD_ENTRY    200
  23. #define IDD_CHAR    201
  24. #define IDD_VKEY    202
  25. #define IDD_SCANCODE    203
  26. #define IDD_SHIFT    204
  27. #define IDD_CONTROL    205
  28. #define IDD_ALT        206
  29. #define IDD_LONEKEY    207
  30. #define IDD_CMD        208
  31. #define IDD_SYSCMD    209
  32. #define IDD_FHELP    210
  33. /*
  34.     Prototypes
  35. */
  36. MRESULT EXPENTRY  AccelWndProc(HWND, USHORT, MPARAM, MPARAM);
  37. MRESULT EXPENTRY  AboutDlgProc(HWND, USHORT, MPARAM, MPARAM);
  38. MRESULT EXPENTRY CreateDlgProc(HWND, USHORT, MPARAM, MPARAM);
  39. void cdecl main(void);
  40.