home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / asm / PJ96.ZIP / GENERIC.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-05  |  351 b   |  14 lines

  1. #include <windows.h>
  2. #include "winclass.h"
  3. #include "initinst.h"
  4.  
  5. /*--------------------------------------------------------------------------
  6.   Make an instance of a generic window
  7. --------------------------------------------------------------------------*/
  8. BOOL InitInstance()
  9. {
  10.   static MAINWINDOW Generic;
  11.  
  12.   return Generic.Make();
  13. }
  14.