1 |
|
/* |
2 |
|
* macos_util.h - MacOS definitions/utility functions |
3 |
|
* |
4 |
< |
* SheepShaver (C) 1997-2008 Christian Bauer and Marc Hellwig |
4 |
> |
* SheepShaver (C) Christian Bauer and Marc Hellwig |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
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 uint32 FindLibSymbol(char *lib, char *sym); // Find symbol in shared library |
356 |
> |
extern uint32 FindLibSymbol(const char *lib, const 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 |