How should this C be convert to D :
typedef const gchar* (*GModuleCheckInit) (GModule *module);
typedef void (*GModuleUnload) (GModule *module);
Is this correct ?
alias const gchar* function( GModule *module ) GModuleCheckInit;
alias void function( GModule *module ) GModuleUnload;
Line 1 should be
otherwise the
const
will apply to the whole thing, makingGModuleCheckInit
not mutable.Line 2 is correct.