Commit 06fb21c5 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

webservices: Ignore unimplemented struct options in the writer.

parent 864559db
......@@ -1652,11 +1652,7 @@ static HRESULT write_type_struct( struct writer *writer, WS_TYPE_MAPPING mapping
HRESULT hr;
const char *ptr;
if (desc->structOptions)
{
FIXME( "struct options 0x%x not supported\n", desc->structOptions );
return E_NOTIMPL;
}
if (desc->structOptions) FIXME( "struct options 0x%x not supported\n", desc->structOptions );
for (i = 0; i < desc->fieldCount; i++)
{
......
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