The WUMS_INITIALIZE now has an argument which provides a pointer to the module_information_t struct

This commit is contained in:
Maschell 2020-06-06 22:40:52 +02:00
parent c88c061613
commit 090efd9ab0
1 changed files with 7 additions and 3 deletions

View File

@ -26,6 +26,7 @@
#pragma once #pragma once
#include "common.h" #include "common.h"
#include "defines/module_defines.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@ -51,13 +52,16 @@ typedef struct wums_hook_t {
const void *target; /* Address of our own, new function */ const void *target; /* Address of our own, new function */
} wums_hook_t; } wums_hook_t;
typedef struct wums_app_init_args_t {
module_information_t* module_information;
} wums_app_init_args_t;
#define WUMS_INITIALIZE() \ #define WUMS_INITIALIZE(myargs) \
WUMS_INIT_WUT(); \ WUMS_INIT_WUT(); \
WUMS_FINI_WUT(); \ WUMS_FINI_WUT(); \
void __wums__init(void);\ void __wums__init(wums_app_init_args_t);\
WUMS_HOOK_EX(WUMS_HOOK_INIT, __wums__init); \ WUMS_HOOK_EX(WUMS_HOOK_INIT, __wums__init); \
void __wums__init() void __wums__init(wums_app_init_args_t myargs)
#define WUMS_APPLICATION_STARTS() \ #define WUMS_APPLICATION_STARTS() \
void __wums_start(void);\ void __wums_start(void);\