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