Path: utzoo!attcan!uunet!husc6!mailrus!ames!amdahl!nsc!voder!apple!goldman From: goldman@Apple.COM (Phil Goldman) Newsgroups: comp.sys.mac.programmer Subject: Re: Is MultiFinder running [was Re: System 6.0 breaks my cdevs! revisited] Message-ID: <12517@apple.Apple.COM> Date: 20 Jun 88 16:22:28 GMT References: <232@hodge.UUCP> Reply-To: goldman@apple.apple.com.UUCP (Phil Goldman) Organization: Apple Computer Inc, Cupertino, CA Lines: 24 In article <232@hodge.UUCP> thecloud@pnet06.cts.com (Ken Mcleod) writes: > Question #2: How do I determine the TOTAL amount of RAM installed, under MF? There is a temporary memory call, _MFTopMem, that gives the actual value of _TopMem under MultiFinder. Although the service always existed, the glue was not made public in the first release of the MultiFinder developer's package -- it will be available in new releases. The glue is something like: #define OSDISPATCH 0xA88F #define mfTopMemSel 22 #define MFTopMem() \ cMFTopMem(mfTopMemSel) pascal Size cMFTopMem(SW) short SW; extern OSDISPATCH; but this is *not* official. If you plan to use the glue, please use the version put out through APDA. -Phil Goldman Apple Computer