You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
919 B
72 lines
919 B
#ifndef VARS_H
|
|
#define VARS_H
|
|
|
|
#include "typedefs.h"
|
|
#include "enums.h"
|
|
#include "structs.h"
|
|
|
|
// Variables
|
|
// =========
|
|
// V = Void
|
|
//void var_V;
|
|
|
|
// _P
|
|
char b;
|
|
|
|
// P
|
|
int x;
|
|
|
|
|
|
// enums
|
|
// =====
|
|
// Incomplete types:
|
|
// enum _IE var__IE;
|
|
// enum IE var_IE;
|
|
// AIE var_AIE;
|
|
|
|
enum _E var__E ;
|
|
enum E var_E;
|
|
AE var_AE;
|
|
|
|
|
|
// structs
|
|
// =======
|
|
// Incomplete types:
|
|
// struct _IS var__IS;
|
|
// struct IS var_IS;
|
|
// AIS var_AIS;
|
|
|
|
struct _PS var__PS;
|
|
struct PS var_PS;
|
|
APS var_APS;
|
|
|
|
struct _CS var__CS;
|
|
struct CS var_CS;
|
|
ACS var_ACS;
|
|
|
|
struct _CCS var__CCS;
|
|
struct CCS var_CCS;
|
|
ACCS var_ACCS;
|
|
|
|
struct _HS var__HS;
|
|
struct _NCS var__NCS;
|
|
|
|
struct HS var_HS;
|
|
struct _NPS var__NSP;
|
|
AHS var_AHS;
|
|
|
|
struct _HHS var__HHS;
|
|
struct _NHS var__NHS;
|
|
struct _NNPS var__NNPS;
|
|
|
|
struct HHS var_HHS;
|
|
struct _NHS1 var__NHS1;
|
|
struct _NNCS var__NNCS;
|
|
enum _NENHS var__NENHS;
|
|
AHHS var_ASHS;
|
|
|
|
struct _HS1 var__HS1;
|
|
enum _NEHS var_NEHS1;
|
|
|
|
|
|
#endif // VARS_H
|
|
|