Update module_information_t struct and add information about the RPL acquired by modules

This commit is contained in:
Maschell 2022-10-05 14:11:35 +02:00
parent 9d873c7e39
commit 00ce285fe6
1 changed files with 3 additions and 1 deletions

View File

@ -60,12 +60,14 @@ typedef struct module_information_single_t {
uint32_t number_function_symbols;
} module_information_single_t;
#define MODULE_INFORMATION_VERSION 0x0000000D
#define MODULE_INFORMATION_VERSION 0x0000000E
typedef struct module_information_t {
uint32_t version;
uint32_t number_modules;
module_information_single_t * modules;
uint32_t number_acquired_rpls;
uint32_t * acquired_rpls;
} module_information_t;
// clang-format on