__declspec(dllexport)

2012-01-15 Thread Peter Lindener
D2 is Great, I've got D based numeric array DLLs extending Python Numpy.. My Question is: What is the D2 language's equivalent for __declspec(dllexport).. Can one export variables as well as functions from a DLL's symbol table, while programing in D2 with dmd? -Peter

Re: __declspec(dllexport)

2012-01-15 Thread Timon Gehr
On 01/16/2012 04:26 AM, Peter Lindener wrote: D2 is Great, I've got D based numeric array DLLs extending Python Numpy.. My Question is: What is the D2 language's equivalent for __declspec(dllexport).. Afaik it is simply the 'export' storage class. Can one export

Re: __declspec(dllexport)

2012-01-16 Thread Adam Wilson
On Sun, 15 Jan 2012 19:26:38 -0800, Peter Lindener wrote: D2 is Great, I've got D based numeric array DLLs extending Python Numpy.. My Question is: What is the D2 language's equivalent for __declspec(dllexport).. Can one export variables as well as functions from a DLL'