Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: charlassPosted on 2000-05-07 at 01:12:38ID: 2785366
Hi,
I'm not really a Mac expert but noone was answering so far...
Need other applications this SHL?
If not than it is the easiest way to put it into your app dir. An other way could be to place the SHL somewhere, create a link and move this link-file into your app dir.
You need a .h file for all the other cpp-files who want to call a SHL function (this for the compiler)
And you have to declare which functions you want to export from your SHL. There are three ways to do this, check the linker settings.
I prefer the "#pragma export" method.
Your .h file:
----------
extern int not_exported_func();
#pragma export on
extern int exported_func();
#pragma export off
----------
Ask next week for details 'cause I am sitting now at a Windows PC.
bye!