TweetFollow Us on Twitter

Feb 96 Top 10
Volume Number:12
Issue Number:2
Column Tag:Symantec Top 10

Symantec Top 10

This monthly column, written by Symantec’s Technical Support Engineers, is intended to give our readers technical information on using Symantec products.

By Michael Hopkins, Symantec

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

Q: I am compiling my project with the THINK Project Manager and I get an error message "Error: Illegal Near Data". What can I do to correct this problem?

A: This typically occurs when you have Far DATA checked in the Project Options dialog box and not Far CODE. To turn on Far CODE, choose Set Project Type from the Project menu and check the Far CODE check box. For more information on how to use Far CODE and Far DATA, consult your User’s Guide.

Q: I have written some simple code that has a structure declaration in a header file and then a global variable of that structure type in my main source file. When I compile the code, I get the message "Error: Size of struct is not known". Furthermore, when I preprocess the file, I don’t see my struct declaration being included. What is going on?

A: Let’s take a look at an example:


/* main.c */ 
#include "timer.h"

struct clock local_clock;

main()
{
}


/*  timer.h  */
struct clock {
 long start_time;
 long end_time;
};

What is wrong with this picture? Well, there is actually nothing wrong with the structure. The problem is that Timer.h is the name of a system include file that is automatically included as part of the precompiled headers (in this case, MacHeaders). Therefore, the user header file is not being included because a system file of the same name is being used. To correct this problem, either rename the user header file or, for non-Macintosh applications, do not include MacHeaders in the prefix.

Q: I am writing a virus scanning program and I need to examine code resources of an application to verify that they are valid. What information does the Symantec Linker place in the first two bytes of the code resource?

A: For all CODE segments besides CODE 0, there is a code segment header. The THINK Linkers use the upper bit of this header to indicate a model Far CODE segment. The runtime loader resides in CODE 1 of the application and is the first piece of code executed. The loader loads and initializes the DATA and STRS, installs hooks for _LoadSeg, _UnloadSeg, and _ExitToShell traps, and calls the main program.

If the code is using a far model, the _LoadSeg and _UnloadSeg bottlenecks completely replace the standard segment loader. The standard 4-byte CODE segment header is interpreted differently to accommodate the larger jump table, so it is incompatible with the ROM segment loader. The header has the following format:

The R bit indicates that the segment has relocations which must be applied at runtime. These are stored in a CREL resource with the same resource ID as the CODE segment. The F bit is used to distinguish a far header from the standard header.

Be aware that this format is different from the header that MPW and Merowerks use as well as the CFM-68K header format.

Q: I am trying to use ODBC (Open DataBase Collaboration) with the THINK Project manager and I am getting a number of link errors. What library files to I need to add to use ODBC?

A: To use ODBC, you will need to include:

• MacTraps and MacTraps2

• LibraryManagerClient.o

• alloc_private.c

You will also need to write two additional functions (source is in THINK Reference under Embedded DefProc):

 Boolean TrapAvailable( short theTrap );
 void FlushCache( void );

If you are compiling one of the demos, you will need to write a stricmp:

 pascal short _stricmp( const char *s, const char *s2)
 { 
 return (short)strcmp(s, s2); 
 }

Q: I am making a 68K version of my PPC application and I’m getting a link error with numtostring() which is in TextUtils.h. On the PPC, this routine is in InterfaceLib.xcoff. Where is it on the 68K mac?

A: It is important to realize that the lower-case version of numtostring() is different than NumToString() which is in MacTraps. NumToString() returns a pascal-style Str255, and numtostring() returns a c-style string. To use the lower-case version with the THINK project manager, you will need to include Apple C Glue which is in Macintosh Libraries:68K Libraries from the Symantec C++ v8 Release 4 CD.

Q: Is there any way that I to make the Finder run Power Macintosh DebugServices when I launch the SPM?

A: No, but you could tell SPM to launch DebugServices on startup or shutdown. To run a script automatically when the Project Manager opens, record or write a script using the Script Editor. Save the script in the (Scripts) folder and name it “Startup”. Alternatively, if you want the script to run on exit from the Project manager, name it “Shutdown”.

Q: I’ve noticed that all native applications have a note in the “Get Info” window that says: “Memory requirements will decrease by xxxxK if virtual memory is turned on in the Memory control panel”. Won’t using virtual memory decrease my application performance?

A: No, not necessarily. In some cases the use of virtual memory on Power Macintoshes can actually increase the runtime performance of your application. When VM is not enabled on a Power PC, the application’s stack, heap, and all of its code fragments have to be loaded into the application’s partition. With VM on, only the stack and heap are loaded into the application’s partition. This reduces launch time and requirements for native programs. The Virtual Memory Manager will track your application’s code fragments and load them into the application’s partition only when they are needed. If done correctly, this won’t result in a noticeable performance penalty and the application will launch much more quickly. For more information, refer to Inside Macintosh: PowerPC System Software.

Q: How do I create a CustomTEHook on a PowerPC?

A: It is actually fairly straight-forward thanks to Apple’s Universal Headers. Create your hook procedure with the following signature:

 
 pascal unsigned short myTextWidthHookProc( 
 unsigned short  textLen, 
 unsigned short  textOffset,
 void * textBufferPtr,
 TEPtr  pTE, 
 TEHandle hTE
 );

Then create a routine descriptor and call TECustomHook like this:

 TextWidthHookUPP myUPP = 
 NewTextWidthHookProc( myTextWidthHookProc );
 TECustomHook( intTextWidthHook, &myUPP, myTE );


Q: I have noticed that there is a problem in CDialogText where cuts, copies and pastes are not reported to the supervisor of the CDialogText. Is there an easy way to fix this?

A: Yes, there is. Change the code for CDialogText::

DoCommand to:

 void CDialogText::DoCommand( long theCommand )
 {
 inherited::DoCommand( theCommand );

 switch( theCommand )
 {
 case cmdCut:
 case cmdPaste:
 case cmdClear:
 if (editable)
 BroadcastChange( dialogTextChanged, &ID );
 break;
 default:
 break;
 }
 }

Q: How do I force Visual Architect to re-generate all sources including the files that should only be generated once such as CMain and CApp?

A: Take the Source directory in your project folder and either rename it or move it to a different location. Remove all of your existing generated VA files from your project. When you choose Generate All from the Visual Architect, it will create a new source folder and generate all of the files and then add them to your project.

Special Thanks To

Levi Brown, Craig Conner, Rick Hartmann, Noah Lieberman, Andy McFarland, Scott Morrison, Phil Shapiro, Jeff Weeks, Kevin Quah

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Tokkun Studio unveils alpha trailer for...
We are back on the MMORPG news train, and this time it comes from the sort of international developers Tokkun Studio. They are based in France and Japan, so it counts. Anyway, semantics aside, they have released an alpha trailer for the upcoming... | Read more »
Win a host of exclusive in-game Honor of...
To celebrate its latest Jujutsu Kaisen crossover event, Honor of Kings is offering a bounty of login and achievement rewards kicking off the holiday season early. [Read more] | Read more »
Miraibo GO comes out swinging hard as it...
Having just launched what feels like yesterday, Dreamcube Studio is wasting no time adding events to their open-world survival Miraibo GO. Abyssal Souls arrives relatively in time for the spooky season and brings with it horrifying new partners to... | Read more »
Ditch the heavy binders and high price t...
As fun as the real-world equivalent and the very old Game Boy version are, the Pokemon Trading Card games have historically been received poorly on mobile. It is a very strange and confusing trend, but one that The Pokemon Company is determined to... | Read more »
Peace amongst mobile gamers is now shatt...
Some of the crazy folk tales from gaming have undoubtedly come from the EVE universe. Stories of spying, betrayal, and epic battles have entered history, and now the franchise expands as CCP Games launches EVE Galaxy Conquest, a free-to-play 4x... | Read more »
Lord of Nazarick, the turn-based RPG bas...
Crunchyroll and A PLUS JAPAN have just confirmed that Lord of Nazarick, their turn-based RPG based on the popular OVERLORD anime, is now available for iOS and Android. Starting today at 2PM CET, fans can download the game from Google Play and the... | Read more »
Digital Extremes' recent Devstream...
If you are anything like me you are impatiently waiting for Warframe: 1999 whilst simultaneously cursing the fact Excalibur Prime is permanently Vault locked. To keep us fed during our wait, Digital Extremes hosted a Double Devstream to dish out a... | Read more »
The Frozen Canvas adds a splash of colou...
It is time to grab your gloves and layer up, as Torchlight: Infinite is diving into the frozen tundra in its sixth season. The Frozen Canvas is a colourful new update that brings a stylish flair to the Netherrealm and puts creativity in the... | Read more »
Back When AOL WAS the Internet – The Tou...
In Episode 606 of The TouchArcade Show we kick things off talking about my plans for this weekend, which has resulted in this week’s show being a bit shorter than normal. We also go over some more updates on our Patreon situation, which has been... | Read more »
Creative Assembly's latest mobile p...
The Total War series has been slowly trickling onto mobile, which is a fantastic thing because most, if not all, of them are incredibly great fun. Creative Assembly's latest to get the Feral Interactive treatment into portable form is Total War:... | Read more »

Price Scanner via MacPrices.net

Early Black Friday Deal: Apple’s newly upgrad...
Amazon has Apple 13″ MacBook Airs with M2 CPUs and 16GB of RAM on early Black Friday sale for $200 off MSRP, only $799. Their prices are the lowest currently available for these newly upgraded 13″ M2... Read more
13-inch 8GB M2 MacBook Airs for $749, $250 of...
Best Buy has Apple 13″ MacBook Airs with M2 CPUs and 8GB of RAM in stock and on sale on their online store for $250 off MSRP. Prices start at $749. Their prices are the lowest currently available for... Read more
Amazon is offering an early Black Friday $100...
Amazon is offering early Black Friday discounts on Apple’s new 2024 WiFi iPad minis ranging up to $100 off MSRP, each with free shipping. These are the lowest prices available for new minis anywhere... Read more
Price Drop! Clearance 14-inch M3 MacBook Pros...
Best Buy is offering a $500 discount on clearance 14″ M3 MacBook Pros on their online store this week with prices available starting at only $1099. Prices valid for online orders only, in-store... Read more
Apple AirPods Pro with USB-C on early Black F...
A couple of Apple retailers are offering $70 (28%) discounts on Apple’s AirPods Pro with USB-C (and hearing aid capabilities) this weekend. These are early AirPods Black Friday discounts if you’re... Read more
Price drop! 13-inch M3 MacBook Airs now avail...
With yesterday’s across-the-board MacBook Air upgrade to 16GB of RAM standard, Apple has dropped prices on clearance 13″ 8GB M3 MacBook Airs, Certified Refurbished, to a new low starting at only $829... Read more
Price drop! Apple 15-inch M3 MacBook Airs now...
With yesterday’s release of 15-inch M3 MacBook Airs with 16GB of RAM standard, Apple has dropped prices on clearance Certified Refurbished 15″ 8GB M3 MacBook Airs to a new low starting at only $999.... Read more
Apple has clearance 15-inch M2 MacBook Airs a...
Apple has clearance, Certified Refurbished, 15″ M2 MacBook Airs now available starting at $929 and ranging up to $410 off original MSRP. These are the cheapest 15″ MacBook Airs for sale today at... Read more
Apple drops prices on 13-inch M2 MacBook Airs...
Apple has dropped prices on 13″ M2 MacBook Airs to a new low of only $749 in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, now available for $679 for 8-Core CPU/7-Core GPU/256GB models. Apple’s one-year warranty is included, shipping is free, and each... Read more

Jobs Board

Seasonal Cashier - *Apple* Blossom Mall - J...
Seasonal Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Seasonal Fine Jewelry Commission Associate -...
…Fine Jewelry Commission Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) Read more
Seasonal Operations Associate - *Apple* Blo...
Seasonal Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Read more
Hair Stylist - *Apple* Blossom Mall - JCPen...
Hair Stylist - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.