mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 13:11:54 +00:00
13 lines
307 B
C
13 lines
307 B
C
|
#pragma once
|
||
|
#include "model.h"
|
||
|
#include "genericClass.h"
|
||
|
|
||
|
|
||
|
|
||
|
#define getIntValue(var) (var)->integer.value
|
||
|
|
||
|
IntClass_t createIntClass(s64 in);
|
||
|
|
||
|
Variable_t newIntVariable(s64 x);
|
||
|
#define newIntVariablePtr(x) copyVariableToPtr(newIntVariable(x))
|
||
|
Variable_t getIntegerMember(Variable_t* var, char* memberName);
|