home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 5.ddi / RWCDEMO.ZIP / RWCDEMO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  498 b   |  17 lines

  1. // (C) Copyright 1991, 1992 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 HINSTANCE        hInstance;
  10.     static HINSTANCE        hPrevInst;
  11.     static int              cmdShow;
  12.     static HWND             hWndClient;
  13.     static TMDIChildWindow *currentWindow;
  14. };
  15.  
  16. LRESULT CALLBACK _export FrameWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
  17.