rpcrt4: An interface pointer just has the size of a regular pointer.

This commit is contained in:
Francois Gouget 2011-11-16 16:24:39 +01:00 committed by Alexandre Julliard
parent 8f9c39d2a8
commit e9e0507d2b

View file

@ -211,6 +211,8 @@ static DWORD calc_arg_size(MIDL_STUB_MESSAGE *pStubMsg, PFORMAT_STRING pFormat)
break;
default:
FIXME("Unhandled type %02x\n", *pFormat);
/* fallthrough */
case RPC_FC_IP:
size = sizeof(void *);
break;
}