Commit cb246ca7 authored by Alexandre Julliard's avatar Alexandre Julliard

widl: Support encoding the DECIMAL type in typelibs.

parent 8c789948
......@@ -849,6 +849,12 @@ static int encode_type(
*alignment = 8;
break;
case VT_DECIMAL:
*encoded_type = default_type;
*width = 16;
*alignment = 8;
break;
case VT_VOID:
*encoded_type = 0x80000000 | (VT_EMPTY << 16) | vt;
*width = 0;
......
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