[BUG] Repaired types on some parameters.
[FEAT] Implemented struct, still testing. [FEAT] Implemented var, still testing.
This commit is contained in:
8
types.h
8
types.h
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user