home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / msysjour / vol04 / 01b / macsl / mpmfig2.txt < prev    next >
Text File  |  1988-10-27  |  419b  |  22 lines

  1. HAB APIENTRY WinInitialize( fOptions )
  2.     USHORT      fOptions;
  3. {
  4.     /* Static initialization - less hassle this way? */
  5.  
  6.     _pps1 = &_ps1;
  7.     _hps1 = (HPS)&_pps1;
  8.  
  9.     /* Macintosh memory management initialization */
  10.  
  11.     MaxApplZone();
  12.     MoreMasters();
  13.     MoreMasters();
  14.     MoreMasters();
  15.  
  16.     /* Open resource file - TEMP */
  17.  
  18.     OpenResFile( "\pMacPM.rsrc" );
  19.     
  20.     return (HAB)1;
  21. }
  22.