home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / utils / 6plus / abasica.h < prev    next >
Text File  |  1995-05-18  |  336b  |  9 lines

  1. //  Header file let you set numbers to your constants
  2. //  And prototype your functions that get exported  (code that outside things need pointers to)
  3.  
  4. #define IDM_ABOUT           100
  5. #define IDM_EXIT                101
  6.  
  7. long FAR PASCAL MainWndProc(HWND, UINT, WPARAM, LPARAM);
  8. BOOL FAR PASCAL About(HWND, unsigned, WORD, LONG);
  9.