home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / TEMPLATE / AUTOTEST.H < prev    next >
Text File  |  1993-12-01  |  985b  |  30 lines

  1. #define IDM_ABOUT           100
  2. #define IDM_TRACEON          105
  3. #define IDM_TRACEOFF         110
  4. #define IDM_RECORD          115
  5. #define IDM_STOPREC         120
  6. #define IDM_REPLAY          125
  7. #define IDD_STEXT         130
  8. #define IDD_OK            135
  9. #define IDM_STOPPLAY        140
  10. #define IDC_FILENAME        145
  11. #define IDC_EDIT            150
  12. #define IDC_EDIT1            155
  13. #define IDC_EDIT2            160
  14. #define IDC_FILES           165
  15. #define IDC_LISTBOX         170
  16. #define IDC_PATH            175
  17. #define IDD_CANCEL          180
  18. #define IDC_NUMEVNTS      205
  19. #define IDD_HALTACTIVITY  210
  20. #define MAXFILESIZE       0x7fff           /* maximum file size that can be loaded */
  21. #define FILENAMELEN       128
  22. /* #define DEBUG  1        */
  23.  
  24. int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  25. BOOL InitApplication(HANDLE);
  26. BOOL InitInstance(HANDLE, int);
  27. long FAR PASCAL MainWndProc(HWND, unsigned, WORD, LONG);
  28. BOOL FAR PASCAL About(HWND, unsigned, WORD, LONG);
  29. void ErrorMessageHandler(WORD);
  30.