14 lines
554 B
C++
14 lines
554 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
void types_init();
|
|
|
|
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);
|