Commit 10a605b0 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

Added handling of unsigned type.

parent b675c1a9
......@@ -563,6 +563,7 @@ base_type: tBYTE { $$ = make_type(RPC_FC_BYTE, NULL); }
default: break;
}
}
| tUNSIGNED { $$ = make_type(RPC_FC_ULONG, &std_int); $$->sign = -1; }
| tFLOAT { $$ = make_type(RPC_FC_FLOAT, NULL); }
| tDOUBLE { $$ = make_type(RPC_FC_DOUBLE, NULL); }
| tBOOLEAN { $$ = make_type(RPC_FC_BYTE, &std_bool); /* ? */ }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment