home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.mac.programmer
- Path: sparky!uunet!wupost!spool.mu.edu!agate!apple!mumbo.apple.com!gallant.apple.com!wintermute.apple.com!user
- From: ksand@apple.com (Kent Sandvik )
- Subject: Re: Problems with MacApp
- Sender: news@gallant.apple.com
- Message-ID: <ksand-121292162848@wintermute.apple.com>
- Date: Sun, 13 Dec 1992 00:32:36 GMT
- References: <1fp6gdINNmqk@calvin.NYU.EDU>
- Organization: (Evil Eye Creature from Mars, Inc.)
- Followup-To: comp.sys.mac.programmer
- Lines: 64
-
- In article <1fp6gdINNmqk@calvin.NYU.EDU>, roy@mchip00.med.nyu.edu (Roy
- Smith) wrote:
- >
- >
- > After making a number of false starts at Mac programming with
- > ThinkC, I've decided to take a shot at MPW. I've installed MPW 3.2 and
- > MacApp 3.0.1 from the ETO-8 CD-ROM and am trying to run through the MacApp
- > Tutorial (C++). Starting right at the beginning, I tried to build the
- > Nothing application like the tutorial says, but can't get it to work.
- > Here's what I get:
- >
- > mabuild nothing -autobuild -nodebug
- > MABuildTool - v. 3.0.1 Release 6/10/92 Start: 11:49:04 12/2/92
- >
- > Copyright Apple Computer, Inc. 1986-1992
- > All Rights Reserved.
- >
- > Target Folder: "Qwerky:MacApp 3.0.1:Libraries:.NoDebug Files:"
- > Making: MacApp.Lib.MAMake
- > Rezzing: MacApp.r
- > File "Qwerky:MacApp 3.0.1:Libraries:MacApp.r"; Line 25; ###
- > Qwerky:MPW:Tools:Rez - Can't find the declaration for the resource type
- > 'aedt' (0x61656474).
-
- The missing 'aedt' resource bug strikes again. The ETO CD should have a bug
- guide (actually two of them in the same documentation folder) where this
- problem
- is defined and where we also described the workaround. In addition, the ETO
- #9 has
- a MacApp 3.0.1* release where the bug is fixed.
-
- You need to add the missing 'aedt' resource to the MacAppTypes.h file.
- This resource was defined
- in Types.h, but it was taken out in the MPW revision, and someone forgot
- :-)
- to place it into the MacApp resource files.
-
- Here's an 'aedt' resource if you don't have access to earlier ETO CDs where
- the
- resource is present:
-
-
- /*------------------aedt Ñ Apple Events Template -----------------*/
- /* Resource definition used for associating a value with an apple event */
- /* This really only useful for general dispatching */
-
- type 'aedt' {
- wide array {
- unsigned longint; /* Event Class */
- unsigned longint; /* Event ID */
- unsigned longint; /* Value */
- };
- };
-
-
- Place this one inside the MacAppTypes.r file, just after the:
- #define sectionCancelMsgID 'cncl' // Section Cancel Event
-
- line.
-
- Kent
- -------------------
- Kent Sandvik (UUCP: ....!apple!ksand; INTERNET: ksand@apple.com)
- DISCLAIMER: Private activities on the Net.
-