X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Finclude%2Fmodules.h;h=cb436a605e6c371f0a42629111604367dfed13ff;hb=13078002b01ee4f63eb2001d2ef479a2a006ea32;hp=1c561463ab71bb04527842407c02657dc6046fa5;hpb=25b02822ad95feb8f82f7b8fef44a58e29afb79b;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/include/modules.h b/KernelLand/Kernel/include/modules.h index 1c561463..cb436a60 100644 --- a/KernelLand/Kernel/include/modules.h +++ b/KernelLand/Kernel/include/modules.h @@ -102,7 +102,7 @@ typedef struct sModuleLoader struct sModuleLoader *Next; //!< Kernel Only - Next loader in list char *Name; //!< Friendly name for the loader int (*Detector)(void *Base); //!< Simple detector function - int (*Loader)(void *Base); //!< Initialises the module + int (*Loader)(void *Base, const char *ArgumentString); //!< Initialises the module int (*Unloader)(void *Base); //!< Calls module's cleanup } PACKED tModuleLoader;