[BUG] Repaired types on some parameters.

[FEAT] Implemented struct, still testing.
[FEAT] Implemented var, still testing.
This commit is contained in:
2021-05-04 10:24:35 +02:00
parent c99d5ab781
commit 567710779a
10 changed files with 96 additions and 27 deletions

View File

@@ -7,7 +7,7 @@ const int types_add(const std::string name);
const int types_exist(const std::string name);
const int types_get_length(const uint32_t type);
const int types_add_variable(const uint32_t type, const std::string name, const uint32_t var_type, const int length);
const int types_variable_exists(const uint32_t type, const std::string name);
const int types_get_variable_type(const uint32_t type, const uint32_t variable);
const int types_get_variable_length(const uint32_t type, const uint32_t variable);
const int types_add_member(const uint32_t type, const std::string name, const uint32_t var_type, const uint32_t length);
const int types_member_exists(const uint32_t type, const std::string name);
const int types_get_member_type(const uint32_t type, const uint32_t member);
const int types_get_member_length(const uint32_t type, const uint32_t member);