Quote Originally Posted by Momergil View Post
Thanks for the news, anda_skoa! I'll gladly move the things from _global to the unique other header when possible now
That has always been possible.

Quote Originally Posted by Momergil View Post
Sorry if I used a misleading terminology... By "static" I just mean "Not at runtime"
Yes, static linking means that the library doesn't have to be loaded at runtime.
DLLs always have to be loaded at runtime, that's the D in DLL.

A static library is not a DLL and also doesn't need export macros on its symbols.

Cheers,
_