Prefix [putref] property names with putref_.

This commit is contained in:
Huw Davies 2005-11-14 15:12:24 +00:00 committed by Alexandre Julliard
parent 8f3b9d506b
commit 8056092909
1 changed files with 2 additions and 0 deletions

View File

@ -105,6 +105,8 @@ void write_name(FILE *h, var_t *v)
fprintf(h, "get_" ); fprintf(h, "get_" );
else if (is_attr( v->attrs, ATTR_PROPPUT )) else if (is_attr( v->attrs, ATTR_PROPPUT ))
fprintf(h, "put_" ); fprintf(h, "put_" );
else if (is_attr( v->attrs, ATTR_PROPPUTREF ))
fprintf(h, "putref_" );
fprintf(h, "%s", v->name); fprintf(h, "%s", v->name);
} }