Commit dce3f2be authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

widl: Added RPC_FC_ENUM16 encoding.

parent 4812abc2
......@@ -666,6 +666,8 @@ static int alloc_importfile(
static void add_structure_typeinfo(msft_typelib_t *typelib, type_t *structure);
static void add_interface_typeinfo(msft_typelib_t *typelib, type_t *interface);
static void add_enum_typeinfo(msft_typelib_t *typelib, type_t *enumeration);
/****************************************************************************
* encode_type
......@@ -894,6 +896,9 @@ static int encode_type(
case RPC_FC_IP:
add_interface_typeinfo(typelib, type);
break;
case RPC_FC_ENUM16:
add_enum_typeinfo(typelib, type);
break;
case 0:
error("encode_type: VT_USERDEFINED - can't yet add typedef's on the fly\n");
default:
......
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