Browse Source

added some left over T_xxx usages

Leon Urbas 10 years ago
parent
commit
b55e410481
3 changed files with 10 additions and 10 deletions
  1. 1 1
      examples/src/xml2ns0.c
  2. 2 2
      include/ua_indexedList.h
  3. 7 7
      include/ua_list.h

+ 1 - 1
examples/src/xml2ns0.c

@@ -100,7 +100,7 @@ UA_Int32 UA_NodeSetAliases_println(cstring label, UA_NodeSetAliases *p) {
 }
 
 /* A nodeset consist of a namespace and a list of aliases */
-typedef struct T_UA_NodeSet {
+typedef struct UA_NodeSet {
 	Namespace* ns;
 	UA_NodeSetAliases aliases;
 } UA_NodeSet;

+ 2 - 2
include/ua_indexedList.h

@@ -8,8 +8,8 @@
 /*
  * Integer Indexed List
  */
-typedef struct T_UA_indexedList_Element {
-	struct T_UA_list_Element* father;
+typedef struct UA_indexedList_Element {
+	struct UA_list_Element* father;
 	UA_Int32 index;
 	void* payload;
 }UA_indexedList_Element;

+ 7 - 7
include/ua_list.h

@@ -9,16 +9,16 @@
 
 typedef void (*UA_list_PayloadVisitor)(void* payload);
 
-typedef struct T_UA_list_Element {
-	struct T_UA_list_List* father;
+typedef struct UA_list_Element {
+	struct UA_list_List* father;
 	void *payload;
-    struct T_UA_list_Element* next;
-    struct T_UA_list_Element* prev;
+    struct UA_list_Element* next;
+    struct UA_list_Element* prev;
 }UA_list_Element;
 
-typedef struct T_UA_list_List {
-   struct T_UA_list_Element* first;
-   struct T_UA_list_Element* last;
+typedef struct UA_list_List {
+   struct UA_list_Element* first;
+   struct UA_list_Element* last;
    UA_Int32 size;
 }UA_list_List;