ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/include/macos_util.h
(Generate patch)

Comparing SheepShaver/src/include/macos_util.h (file contents):
Revision 1.6 by gbeauche, 2004-05-10T16:16:26Z vs.
Revision 1.7 by gbeauche, 2004-12-19T09:01:04Z

# Line 353 | Line 353 | extern void Enqueue(uint32 elem, uint32
353   extern int FindFreeDriveNumber(int num);                                // Find first free drive number, starting at "num"
354   extern void MountVolume(void *fh);                                              // Mount volume with given file handle (see sys.h)
355   extern void FileDiskLayout(loff_t size, uint8 *data, loff_t &start_byte, loff_t &real_size);    // Calculate disk image file layout given file size and first 256 data bytes
356 < extern void *FindLibSymbol(char *lib, char *sym);               // Find symbol in shared library
356 > extern uint32 FindLibSymbol(char *lib, char *sym);              // Find symbol in shared library
357   extern void InitCallUniversalProc(void);                                // Init CallUniversalProc()
358   extern long CallUniversalProc(void *upp, uint32 info);  // CallUniversalProc()
359   extern uint32 TimeToMacTime(time_t t);                                  // Convert time_t value to MacOS time
360 < extern void *Mac_sysalloc(uint32 size);                                 // Allocate block in MacOS system heap zone
361 < extern void Mac_sysfree(void * p);                                              // Release block occupied by the nonrelocatable block p
360 > extern uint32 Mac_sysalloc(uint32 size);                                // Allocate block in MacOS system heap zone
361 > extern void Mac_sysfree(uint32 addr);                                   // Release block occupied by the nonrelocatable block p
362  
363   // Construct four-character-code from string
364   #define FOURCC(a,b,c,d) (((uint32)(a) << 24) | ((uint32)(b) << 16) | ((uint32)(c) << 8) | (uint32)(d))

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines