Add information about the WUMS_DEPENDS_ON macro to the example module

This commit is contained in:
Maschell 2023-01-06 15:24:27 +01:00
parent a2ca8a5777
commit 09908b8a55
1 changed files with 8 additions and 0 deletions

View File

@ -7,6 +7,14 @@ WUMS_MODULE_VERSION("0.1");
WUMS_MODULE_LICENSE("GPL");
WUMS_MODULE_DESCRIPTION("Just an example module");
/**
* If this modules depends on another module (e.g. the FunctionPatcherModule) you can add a dependency to that module.
* This will enforce that the other module has been loaded and initialized before this module is initialized.
* If the other module is not loaded, this module also fails to load.
* Usage: WUMS_DEPENDS_ON(export_name)
* Example: WUMS_DEPENDS_ON(homebrew_functionpatcher)
*/
WUMS_INITIALIZE(/*wums_app_init_args_t*/ args) {
/* Called once when the module has been loaded */