webservices: Ignore unimplemented struct options in the writer.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2016-08-25 20:02:47 +02:00 committed by Alexandre Julliard
parent 864559db02
commit 06fb21c58a
1 changed files with 1 additions and 5 deletions

View File

@ -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++)
{