DLL creation problem

DJ Delorie dj@delorie.com
Sun Oct 31 19:54:00 GMT 1999


> 	So how do I make the above assignment (or any global variable
> 	assignemnt) work as expected?

What we do is, in the header where you prototype the variable
(i.e. the "extern int foo;" line), add a directive like this:

	extern int foo __declspec(dllimport);

Note that you should *only* do this for the application; don't do it
for the dll itself.

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com



More information about the Cygwin mailing list