wine/tools/widl header.c

Alexandre Julliard julliard at wine.codeweavers.com
Mon Nov 14 09:12:24 CST 2005


ChangeSet ID:	21264
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at winehq.org	2005/11/14 09:12:24

Modified files:
	tools/widl     : header.c 

Log message:
	Huw Davies <huw at codeweavers.com>
	Prefix [putref] property names with putref_.

Patch: http://cvs.winehq.org/patch.py?id=21264

Old revision  New revision  Changes     Path
 1.37          1.38          +2 -0       wine/tools/widl/header.c

Index: wine/tools/widl/header.c
diff -u -p wine/tools/widl/header.c:1.37 wine/tools/widl/header.c:1.38
--- wine/tools/widl/header.c:1.37	14 Nov 2005 15:12:24 -0000
+++ wine/tools/widl/header.c	14 Nov 2005 15:12:24 -0000
@@ -105,6 +105,8 @@ void write_name(FILE *h, var_t *v)
     fprintf(h, "get_" );
   else if (is_attr( v->attrs, ATTR_PROPPUT ))
     fprintf(h, "put_" );
+  else if (is_attr( v->attrs, ATTR_PROPPUTREF ))
+    fprintf(h, "putref_" );
   fprintf(h, "%s", v->name);
 }
 



More information about the wine-cvs mailing list