Re: [fpc-pascal] external variable

2008-09-29 Thread Jonas Maebe
On 28 Sep 2008, at 22:26, Felipe Monteiro de Carvalho wrote: APPKIT_EXTERN NSString *NSToolbarSpaceItemIdentifier; How would it be possible to access them in Pascal? var NSToolbarSpaceItemIdentifier: CFStringRef; external; var NSToolbarSpaceItemIdentifier: CFStringRef; cvar; external; (the

[fpc-pascal] external variable

2008-09-28 Thread Felipe Monteiro de Carvalho
Hello, Is ist possible to declare a external variable like in C? In the Cocoa headers there are some variables declared as external, like this: APPKIT_EXTERN NSString *NSToolbarSpaceItemIdentifier; How would it be possible to access them in Pascal? var NSToolbarSpaceItemIdentifier: CFStringRef