X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Finclude%2Fmodules.h;h=1c561463ab71bb04527842407c02657dc6046fa5;hb=0e1f2361c44760869b3b7164217e00889884b976;hp=d72813369ea6f0804559ae13449466536dc087d7;hpb=51ab5f489bc356940c95cc936fd0508e8f07ea97;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/include/modules.h b/KernelLand/Kernel/include/modules.h index d7281336..1c561463 100644 --- a/KernelLand/Kernel/include/modules.h +++ b/KernelLand/Kernel/include/modules.h @@ -73,7 +73,7 @@ typedef struct sModule struct sModule *Next; //!< Next module in list (not to be touched by the driver) const char *Name; //!< Module Name/Identifier int (*Init)(char **Arguments); //!< Module initialiser / entrypoint - void (*Deinit)(void); //!< Cleanup Function + int (*Deinit)(void); //!< Cleanup Function const char **Dependencies; //!< NULL terminated list of dependencies } PACKED tModule;