Marco Leise:

Can I define them somehow? The use case is defining extern C
functions that contain code to load the real thing from a
library.

  nothrow extern(C) void function(int) someFunc = ???

Perhaps you want:

extern(C) nothrow void someFunc(int someArg);

Bye,
bearophile

Reply via email to