[fpc-devel] How to call (access) to an external procedure!

2006-01-30 Thread Amir Aavani
dear friends, I know that if want to use an external variable/procedure in fpc, i should use the following code: function GetEnvironment (const Name: PChar): PChar; cdecl; external 'c' name 'getenv'; but how could i add for example GetEnvironment function to a class (TEnvironment)! Is

Re: [fpc-devel] How to call (access) to an external procedure!

2006-01-30 Thread Geno Roupsky
This particular function could be declared as this: TEnvironment = class public class function GetEnvironment(const Name: PChar): PChar; cdecl; end; class function GetEnvironment(const Name: PChar): PChar; cdecl; external 'c' name 'getenv'; Of course this is not very useful but the idea for

Re: [fpc-devel] How to call (access) to an external procedure!

2006-01-30 Thread Marco van de Voort
dear friends, I know that if want to use an external variable/procedure in fpc, i should use the following code: function GetEnvironment (const Name: PChar): PChar; cdecl; external 'c' name 'getenv'; Note that this procedure is already available as fpgetenv from unit baseunix, and in a