home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pentlk11.zip / WMRECO.H < prev    next >
Text File  |  1994-01-13  |  3KB  |  73 lines

  1. /******************************************************************************
  2. *                                                                             *
  3. *   Name:  WMRECO.H                                                           *
  4. *                                                                             *
  5. *   Copyright : COPYRIGHT IBM CORPORATION, 1992                               *
  6. *               LICENSED MATERIAL                                             *
  7. *                                                                             *
  8. *   DISCLAIMER OF WARRANTIES.  The following [enclosed] code is               *
  9. *      sample code created by IBM Corporation. This sample code is not        *
  10. *      part of any standard or IBM product and is provided to you solely      *
  11. *      for  the purpose of assisting you in the development of your           *
  12. *      applications.  The code is provided "AS IS", without                   *
  13. *      warranty of any kind.  IBM shall not be liable for any damages         *
  14. *      arising out of your use of the sample code, even if they have been     *
  15. *      advised of the possibility of such damages.                            *                       *
  16. *                                                                             *
  17. ******************************************************************************/
  18.  
  19. #define    ID_RESOURCE       1
  20. #define    IDD_ML1           2
  21. #define    IDD_ML2           3
  22. #define    IDD_ML3           4
  23. #define    IDD_ML4           5
  24. #define    IDD_ML5           6
  25. #define    IDD_ML6           7
  26. #define    IDD_ML7           8
  27. #define    IDD_ML8           9
  28. #define    IDD_ML9          10
  29. #define    IDD_MLA          11
  30. #define    IDD_OK           12
  31. #define    IDD_DLG          13
  32.  
  33. #define    STR_1            21
  34. #define    STR_A            22
  35. #define    STR_B            23
  36. #define    STR_11           31
  37. #define    STR_12           32
  38. #define    STR_13           33
  39. #define    STR_14           34
  40. #define    STR_15           35
  41. #define    STR_16           36
  42. #define    STR_17           37
  43. #define    STR_18           38
  44. #define    STR_19           39
  45.  
  46. #define    IDM_EXIT          WM_USER + 1
  47. #define    RECO_MSG          WM_USER + 2
  48.  
  49. /* for the main window text */
  50. CHAR    achInit[][68] =
  51.           {"This program will receive the WM_RECO message. ",
  52.            "Make this window active to receive the mesage. ",
  53.            "Make a gesture and its RECODATA will be given in dialog box. " };
  54.  
  55. HWND       hwndFrame;
  56. HAB        hab;
  57. CHAR       achOutBuf[80];
  58. CHAR       achLine2[80];
  59. CHAR       achLine3[80];
  60. CHAR       achLine4[80];
  61. CHAR       achLine5[80];
  62. CHAR       achLine6[80];
  63. CHAR       achLine7[80];
  64. CHAR       achLine8[80];
  65. CHAR       achLine9[250];
  66.  
  67. VOID             main(VOID);
  68. MRESULT EXPENTRY ClientWindowProc(HWND, ULONG, MPARAM, MPARAM);
  69. MRESULT EXPENTRY TestDlgProc(HWND, ULONG, MPARAM, MPARAM);
  70. VOID             GetString(ULONG, LONG, PSZ);
  71.  
  72.  
  73.