home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12317.ZIP / APP.H < prev    next >
Text File  |  1988-12-30  |  853b  |  29 lines

  1. /* String table constants */
  2. #define IDSNAME         1
  3. #define IDSKIDNAME    2
  4.  
  5. /* Resource Ids */
  6. #define ID_APP          1
  7. #define IDD_ABOUT       2
  8. #define IDD_INPUT       3
  9.  
  10. /* Menu constants */
  11. #define IDADDSTRINGS    1001
  12. #define IDENTER         1002
  13. #define IDABOUT         1006
  14.  
  15. /* Input Dialog Box */
  16. #define IDEDIT          300
  17.  
  18. /*control ID*/
  19. #define LID_LIST1    30
  20.  
  21. /* Function prototypes */
  22. SHORT cdecl main                 ( void );
  23. MRESULT FAR PASCAL APPWndProc    ( HWND, USHORT, MPARAM, MPARAM );
  24. MRESULT FAR PASCAL KidWndProc     ( HWND, USHORT, MPARAM, MPARAM );
  25. VOID    FAR PASCAL APPPaint      ( HWND, USHORT, MPARAM, MPARAM );
  26. MRESULT FAR PASCAL AddStrings     ( HWND, USHORT, MPARAM, MPARAM );
  27. MRESULT FAR PASCAL About     ( HWND, USHORT, MPARAM, MPARAM );
  28. MRESULT FAR PASCAL EditDlg     ( HWND, USHORT, MPARAM, MPARAM );
  29.