Re: [fpc-pascal] Missing functions in FPCMacOSAll.pas

2009-07-19 Thread Tobias Giesen
Hi, thanks very much, it works now! I created a new unit for my declarations and just copied the whole compiler instructions block from FPMacOSAll.pas: {$mode macpas} {$packenum 1} {$macro on} {$inline on} {$calling mwpascal} So now I have access to a whole range of super advanced additional st

Re: [fpc-pascal] Missing functions in FPCMacOSAll.pas

2009-07-19 Thread Paul Ishenin
Tobias Giesen wrote: frequently I need to use a function that is missing in FPCMacOSAll.pas. Trying to declare it myself usually results in successful compilation and linking, but most of the time the functions crash at run time. So I wonder if these are not implemented or if I declare them wrong