home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / wpj_mag / wpjv1n7.zip / INVID.ZIP / INVID.H < prev    next >
Text File  |  1993-06-13  |  477b  |  27 lines

  1. #define dim(x) (sizeof(x) / sizeof(x[0]))
  2. /*
  3. This is used in the function WndProc() to find
  4. the size of the array messages[].
  5. */
  6.  
  7. #define WINDOW_WIDTH  300
  8. #define WINDOW_HEIGHT 300
  9.  
  10.  
  11.  
  12. // Function Prototypes
  13.  
  14. long FAR PASCAL WndProc (HWND, WORD, WORD, LONG);
  15. BOOL InitApplication(HANDLE hInstance);
  16. BOOL InitInstance(HANDLE hInstance, WORD nCmdShow);
  17. long DoCreate();
  18. long DoDestroy();
  19.  
  20.  
  21. // Global variables
  22.  
  23. char szAppName [] = "Invid";
  24.  
  25. HWND hWnd;
  26.  
  27.