rpcrt4: Handle interface pointers in EmbeddedComplexSize.

This commit is contained in:
Robert Shearman 2006-05-18 03:40:06 +01:00 committed by Alexandre Julliard
parent 40d80d7c7a
commit 855535af62
1 changed files with 2 additions and 0 deletions

View File

@ -1543,6 +1543,8 @@ static unsigned long EmbeddedComplexSize(PMIDL_STUB_MESSAGE pStubMsg,
pFormat += *(const SHORT*)pFormat;
return *(const SHORT*)pFormat;
case RPC_FC_IP:
return sizeof(void *);
default:
FIXME("unhandled embedded type %02x\n", *pFormat);
}