rpcrt4: Discriminants can't be int3264.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2018-10-13 17:46:42 -05:00 committed by Alexandre Julliard
parent 9f458df88c
commit 36592505ca
1 changed files with 0 additions and 5 deletions

View File

@ -2762,8 +2762,6 @@ static ULONG EmbeddedComplexSize(MIDL_STUB_MESSAGE *pStubMsg,
case FC_LONG:
case FC_ULONG:
case FC_ENUM32:
case FC_INT3264:
case FC_UINT3264:
return sizeof(ULONG);
case FC_FLOAT:
return sizeof(float);
@ -5642,9 +5640,6 @@ static ULONG get_discriminant(unsigned char fc, const unsigned char *pMemory)
case FC_ULONG:
case FC_ENUM32:
return *(const ULONG *)pMemory;
case FC_INT3264:
case FC_UINT3264:
return *(const ULONG_PTR *)pMemory;
default:
FIXME("Unhandled base type: 0x%02x\n", fc);
return 0;