X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Finclude%2Fmodules.h;h=cb436a605e6c371f0a42629111604367dfed13ff;hb=d7dcea0e5a8df0f479e99f168a10b9a9535c7ad6;hp=1c561463ab71bb04527842407c02657dc6046fa5;hpb=d0b4559f2936f6d9f06be0f7c3c51527a480ec0d;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;