Alexandre Julliard : widl: Fixed syntax of DECL_LINK macro to look more like C code.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Jun 27 04:54:01 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: fdb4c7e98696e8922876881324f5be55a6eae988
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=fdb4c7e98696e8922876881324f5be55a6eae988

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Jun 27 11:51:07 2006 +0200

widl: Fixed syntax of DECL_LINK macro to look more like C code.

---

 tools/widl/widltypes.h |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/tools/widl/widltypes.h b/tools/widl/widltypes.h
index d26b364..c86e8c0 100644
--- a/tools/widl/widltypes.h
+++ b/tools/widl/widltypes.h
@@ -48,7 +48,7 @@ typedef struct _typelib_t typelib_t;
 
 #define DECL_LINK(type) \
   type *l_next; \
-  type *l_prev;
+  type *l_prev
 
 #define LINK(x,y) do { x->l_next = y; if (y) y->l_prev = x; } while (0)
 
@@ -178,7 +178,7 @@ struct _attr_t {
     void *pval;
   } u;
   /* parser-internal */
-  DECL_LINK(attr_t)
+  DECL_LINK(attr_t);
 };
 
 struct _expr_t {
@@ -194,7 +194,7 @@ struct _expr_t {
   int is_const;
   long cval;
   /* parser-internal */
-  DECL_LINK(expr_t)
+  DECL_LINK(expr_t);
 };
 
 struct _type_t {
@@ -208,7 +208,7 @@ struct _type_t {
   int defined, written, user_types_registered;
   int typelib_idx;
   /* parser-internal */
-  DECL_LINK(type_t)
+  DECL_LINK(type_t);
 };
 
 struct _typeref_t {
@@ -228,7 +228,7 @@ struct _var_t {
   expr_t *eval;
 
   /* parser-internal */
-  DECL_LINK(var_t)
+  DECL_LINK(var_t);
 };
 
 struct _func_t {
@@ -237,7 +237,7 @@ struct _func_t {
   int ignore, idx;
 
   /* parser-internal */
-  DECL_LINK(func_t)
+  DECL_LINK(func_t);
 };
 
 struct _ifref_t {
@@ -245,7 +245,7 @@ struct _ifref_t {
   attr_t *attrs;
 
   /* parser-internal */
-  DECL_LINK(ifref_t)
+  DECL_LINK(ifref_t);
 };
 
 struct _class_t {
@@ -254,7 +254,7 @@ struct _class_t {
   ifref_t *ifaces;
 
   /* parser-internal */
-  DECL_LINK(class_t)
+  DECL_LINK(class_t);
 };
 
 struct _typelib_entry_t {
@@ -267,7 +267,7 @@ struct _typelib_entry_t {
         type_t *enumeration;
         var_t *tdef;
     } u;
-    DECL_LINK(typelib_entry_t)
+    DECL_LINK(typelib_entry_t);
 };
 
 struct _importinfo_t {




More information about the wine-cvs mailing list