home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / mac / programm / 13917 < prev    next >
Encoding:
Internet Message Format  |  1992-08-12  |  1.0 KB

  1. Path: sparky!uunet!olivea!apple!mumbo.apple.com!gallant.apple.com!apple.com!dodd
  2. From: dodd@apple.com (Mike Dodd)
  3. Newsgroups: comp.sys.mac.programmer
  4. Subject: Re: What is a memory error -113 ?
  5. Message-ID: <1992Aug13.031241.9631@gallant.apple.com>
  6. Date: 13 Aug 92 03:12:41 GMT
  7. References: <1992Aug11.152914.18785@uni-paderborn.de> <13992@gazette.bcm.tmc.edu>
  8. Sender: news@gallant.apple.com
  9. Organization: Apple Computer Inc.
  10. Lines: 19
  11.  
  12. In article <13992@gazette.bcm.tmc.edu>, jstevens@crick.ssctr.bcm.tmc.edu (Jason Philip Stevens) writes:
  13. > BTW, do any MacWizards know about my "head of pointer info" theory?  If it
  14. > is right, is there a map of what is stored there anywhere? 
  15. yes... the memory manager stores some information before each block in memory.
  16. the data structure is private and subject to change (it's also different
  17. depending on 24/32 bit mode).
  18.  
  19. void initToolbox(void)
  20. {
  21.     MaxApplZone();
  22.     InitGraf(&qd.thePort);
  23.     InitFonts();
  24.     InitWindows();
  25.     FlushEvents(0xffff,0);    
  26.     InitMenus();
  27.     TEInit();
  28.     InitDialogs(0);
  29.     InitCursor();
  30. }
  31.