Skip to content
Snippets Groups Projects
Commit 3fd20968 authored by rswindell's avatar rswindell
Browse files

Created more named_*_t structure type defintion for other named type arrays.

parent a9fefe56
No related branches found
No related tags found
No related merge requests found
......@@ -129,6 +129,41 @@ typedef struct {
char* value;
} named_string_t;
typedef struct {
char* name;
int value;
} named_int_t;
typedef struct {
char* name;
uint value;
} named_uint_t;
typedef struct {
char* name;
long value;
} named_long_t;
typedef struct {
char* name;
ulong value;
} named_ulong_t;
typedef struct {
char* name;
short value;
} named_short_t;
typedef struct {
char* name;
ushort value;
} named_ushort_t;
typedef struct {
char* name;
BOOL value;
} named_bool_t;
/***********************/
/* Handy String Macros */
/***********************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment