mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added handling of unsigned type. Patch by Jacek Caban (from WINE).
svn path=/trunk/; revision=14348
This commit is contained in:
parent
577b88645b
commit
f39737088b
3 changed files with 397 additions and 383 deletions
|
@ -1,5 +1,12 @@
|
|||
ChangeLog
|
||||
|
||||
2005-03-27 Jacek Caban (from WINE)
|
||||
|
||||
tools/widl/parser.y
|
||||
tools/widl/y.tab.c
|
||||
|
||||
Added handling of unsigned type
|
||||
|
||||
2005-03-25 ekohl
|
||||
|
||||
tools/widl/client.c
|
||||
|
|
|
@ -561,6 +561,8 @@ 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_SMALL, &std_bool); }
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue