TweetFollow Us on Twitter

Feb 91 Mousehole
Volume Number:7
Issue Number:2
Column Tag:Mousehole Report

HFS Navigation

By Larry Nedry, Mousehole BBS, (408) 738-5791, Open to all!

From: Elixir

Re: Hello

I am trying to use the following code to put a simple alert type notification box to the screen, but I am getting a -299 error back from it. Then soon afterwards the computer crashes. (Sometimes...)

 procedure notify (st: string);{ Posts notification}
  type
   NMptr = ^NMrec;
  var
   stptr: stringptr;
   noteptr: NMptr;
 begin
  New(stptr);
  stptr^ := st;
  New(noteptr);
  with noteptr^ do
   begin
    qLink := nil;
    qType := ORD(nmType);
    nmMark := 0;
    nmSIcon := nil;
    nmSound := nil;
    nmStr := stptr;
    nmResp := nil;
   end;
  err := NMInstall(noteptr^.qLink);
  if err <> noErr then
   begin
    paramtext(‘Notification did not post!’, stringof(err), ‘’, ‘’);
    err := Alert(200, nil);
   end;
 end;

Also, the above code is written in THINK Pascal. I would greatly appreciate some help with this.

From: Lecroy

Re: NMInstall

You’re passing NIL (noteptr^.qLink) into NMInstall.

The call should look like this:

err := NMInstall(noteptr);

or

err := NMInstall(QElemPtr(noteptr));

depending upon how up-to-date your MPW interface files are... Take a look at the Notification Manager Chapter in Inside Mac VI (if you have it). It gives an example of what you’re trying to do....

PS. I’m not sure what is causing the crash, but you may want to replace the calls to NEW with either a static variable or calls to NewPtr...

From: Deep

Re: HFS Tutoring/Help

I would like to learn about the HFS file manager. One of the things that I would like to be able to do is walk the Catalog tree and get the names/paths and Finder information for all files on a volume in in a directory tree. Can anyone out there point me to some code examples that do this or similar things? Thank you!

From: Mrteague

Re: HFS Tutoring/Help

The Macintosh TechNotes show you how to do this. But better yet, the source code for Disinfectant has a much improved version, and is (probably) written in C. The Disinfectant source is freely available, and is probably already on this BBS (it is also on the System 7.0b1 CD-ROM, and available from the author of Disinfectant. I’m sure this will answer all your questions.

From: Deep

Re: HFS Tutoring/Help

Do you know what technote number? I could not find the disinfectant source code posted here. I think that I can get it from another board thank you.

From: Mrteague

Re: HFS Tutoring/Help

The Technote numbers for the HFS directory search stuff are 68 and 69.

From: Jbs

Re: link.error

While converting a large PC C program to MPW C the following link error occurred: ### Link Error: Module references nested too deeply; increase stack space or reorganize references.(Error 83). How does one increase the stack space for the linker -- Do we use Heapfixer or something else???

PS: Finder memory display shows no “spare” memory available.

From: Atom

Re: link.error

I’m not sure if this will fix your problem, but it *is* possible to increase the MPW shell’s stack size. Use ResEdit to open the shell application’s HEXA ID=128 resource, which is a long word that specifies the stack size in bytes, unless it’s zero in which case a default size is used. Apple warns you not to set this to less than 32K. This will mean less room for the shell’s heap unless you increase the partition size.

From: Aggie

Re: vbl tasks

Does anyone have a code piece which shows how to use the VBL manager?

The specific task which I would like to load into the VBL is to update the dialog so that this only happens during the VBL interrupt and gets rid of flicker. I am using LSP 3.0 and am not proficient in C so please provide it in Pascal.

From: Kman

Re: DA’S and CDEF’s

After spending several weeks writing and debugging my first desk accessory, another programmer noticed my animated buttons and asked how I had created them. I told him that the buttons were actually PICT resources that I drew on the screen. He then told me that the proper way to build the buttons was to build a CDEF. So I spent the next week or so writing my first CDEF. When I was finished I could not find a way to use the CDEF in my DA because of the way owned resources are addressed. So my question is, can I use my own CDEF within a DA and if so how?

From: Alex

Re: SndPlay

I can’t get SndPlay() to work asynchronously. I’m following the code sample in the documentation, but it refuses to work. Any source code showing async playing of sound resources would be appreciated.

From: Ou812

Re: Frame Errors & the serial port

I’m writing a program in Think C 4.0 to get data from the serial ports. The device I hooked up to the Macintosh is generating frame errors on non numeric characters. The buffer in my program gets the numeric characters, but not the characters with the framing errors. I then use VersaTerm to read from the port, and it captures all the characters including the ones with the framing errors. What am I doing wrong?

PS I wrote a similar program in Pascal and that one worked!

PSS System version 6.0.5

PSSS What does the Comm Toolbox supplied with VersaTerm do?

From: Gandalf

Re: PhotoShop modules

Does anyone know how to get the specs for writing Photoshop plug-in modules? They seem to be very simply interfaced to the program... is there a free source or template that someone can post here?

From: Derek

Re: PhotoShop modules

I am not familiar with who makes PhotoShop, but I do know that when I needed information for making modules for DarkRoom I called the company, and 2 days later I received a disk in the mail, no cost. So I would recommend calling them, I am sure it is to their benefit to have modules written so they would be very helpful in giving out the information. If it is SuperMac, I think they even have their own BBS, but never called it to see what is there.

From: Gandalf

Re: PhotoShop modules

Thanks, I would try calling them, but I am in Peru... and that’s a little far away ..... and anything bigger than a letter gets “lost” in the post office here. Nevertheless, I will try to have a friend of mine who is travelling to have this done for me.

But if someone has done so already, and have some sample code or info, it would be great if he can post it here (if it’s permitted, of course).

From: Alex

Re: open()

As far as I can tell the default modes used by open on the Mac are such as to produce an error we see (if a file is open for reading no one else may write it). We need help here to determine which of the following would be the best solution:

(1) is there a way to control the default sharing modes used by open ?

(2) can I use PBHOpenDeny to make my own open to use with the existing read, write, close, lseek ?

(3) Should I write my own versions of open, read, write, lseek, close that handle this stuff correctly ?

Obviously, the closer we can get to (1) the less work we will have, and the least chance of introducing bugs.

From: Elmer

Re: HELP!!!!

I am trying to learn C, my problem is that I would like to be able to read data from a text file... Sample scenario: I enter some numbers in a dialog box and then search for those numbers along with two data fields that correspond to the numbers such as below, the data file would look something like this:

101,xxxx,xxxxxx

102,xxxx,xxxxxx

103,xxxx,xxxxxx

Now I have the SFGetFile and FSOpen to work properly (I think, they seem to anyway) how do I go about searching for say ‘102’ and reading the data that follows it. I am totally lost.

From: Noisy

Re: X-Windows meets the Mac

OK...so Apple *sells* MacX to allow Mac owners to use their Macs as X-Window terminals without having the overhead of AU/X. This is terrific if all you need is another terminal. But what about those of us who want to hack (excuse me...investigate) X-Windows for applications programming, and can’t afford U/X? (or is it A/UX?) Anyone out there ported X-Windows to the Mac in any shape or format...it doesn’t even have to be debugged!

P.S. X11R3 is HUGE...I don’t expect anyone to upload it...

From: Jswartz

Re: ResEdit v2.0b2

I have the same problem on my Mac II at work. The MENU editor in ResEdit 2.0b2 will bomb upon immediately opening a resource.

To get around this, I removed the RSSC with the id “MENU” from ResEdit 2.0, and just use the regular text template to edit menus from 2.0. I also keep an older copy of ResEdit around with a fancy MENU editor, just for that purpose.

Apple knows about this bug, but they have released a fixed version yet. I guess we keep waiting...

From: Noisy

Re: ResEdit v2.0b2

Thanx for your confirmation of similar symptoms...I tried everything from downloading the whole thing two more times to swapping system versions in and out...all without success. We may have to wait a little longer, but then again, the price is right.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple 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.