home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / wksinst / rwcdemo.pak / RWCDEMO.H < prev    next >
C/C++ Source or Header  |  1991-09-09  |  448b  |  17 lines

  1. // (C) Copyright 1991 by Borland International
  2.  
  3. #define max(a,b)    (((a) > (b)) ? (a) : (b))
  4. #define min(a,b)    (((a) < (b)) ? (a) : (b))
  5. #include "rwcdemoc.h"
  6. #include "rwcwnd.h"
  7. struct WinApp
  8. {
  9.     static HANDLE    hInstance;
  10.     static HANDLE    hPrevInst;
  11.     static WORD    cmdShow;
  12.     static HANDLE    hWndClient;
  13.     static TMDIChildWindow *currentWindow;
  14. };
  15.  
  16. long FAR PASCAL _export FrameWndProc(HWND hwnd, WORD message, WORD wParam, LONG lParam);
  17.