9 lines
112 B
C++
9 lines
112 B
C++
#pragma once
|
|
|
|
struct t_variable {
|
|
std::string name;
|
|
int type;
|
|
int length;
|
|
int address;
|
|
};
|