rpcrt4: Support fixed arrays in calc_arg_size.

This commit is contained in:
Robert Shearman 2006-08-09 18:16:56 +01:00 committed by Alexandre Julliard
parent e26bcb7fb2
commit 3db5f872a0
1 changed files with 6 additions and 0 deletions

View File

@ -1031,6 +1031,12 @@ static DWORD calc_arg_size(MIDL_STUB_MESSAGE *pStubMsg, PFORMAT_STRING pFormat)
ComputeConformance(pStubMsg, NULL, pFormat + 4, 0);
size *= pStubMsg->MaxCount;
break;
case RPC_FC_SMFARRAY:
size = *(const WORD*)(pFormat + 2);
break;
case RPC_FC_LGFARRAY:
size = *(const DWORD*)(pFormat + 2);
break;
default:
FIXME("Unhandled type %02x\n", *pFormat);
/* fallthrough */