rpcrt4: Add support for FC_ALIGNM2.

This commit is contained in:
Huw Davies 2009-08-17 14:35:31 +01:00 committed by Alexandre Julliard
parent 86f0634dae
commit 70804336aa

View file

@ -2727,6 +2727,9 @@ static unsigned char * ComplexMarshall(PMIDL_STUB_MESSAGE pStubMsg,
pMemory += sizeof(void *);
break;
}
case RPC_FC_ALIGNM2:
ALIGN_POINTER(pMemory, 2);
break;
case RPC_FC_ALIGNM4:
ALIGN_POINTER(pMemory, 4);
break;
@ -2852,6 +2855,9 @@ static unsigned char * ComplexUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
pMemory += sizeof(void *);
break;
}
case RPC_FC_ALIGNM2:
ALIGN_POINTER_CLEAR(pMemory, 2);
break;
case RPC_FC_ALIGNM4:
ALIGN_POINTER_CLEAR(pMemory, 4);
break;
@ -2966,6 +2972,9 @@ static unsigned char * ComplexBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
pPointer += 4;
pMemory += sizeof(void*);
break;
case RPC_FC_ALIGNM2:
ALIGN_POINTER(pMemory, 2);
break;
case RPC_FC_ALIGNM4:
ALIGN_POINTER(pMemory, 4);
break;
@ -3049,6 +3058,9 @@ static unsigned char * ComplexFree(PMIDL_STUB_MESSAGE pStubMsg,
pPointer += 4;
pMemory += sizeof(void *);
break;
case RPC_FC_ALIGNM2:
ALIGN_POINTER(pMemory, 2);
break;
case RPC_FC_ALIGNM4:
ALIGN_POINTER(pMemory, 4);
break;
@ -3161,6 +3173,9 @@ static ULONG ComplexStructMemorySize(PMIDL_STUB_MESSAGE pStubMsg,
size += sizeof(void *);
break;
}
case RPC_FC_ALIGNM2:
ALIGN_LENGTH(size, 2);
break;
case RPC_FC_ALIGNM4:
ALIGN_LENGTH(size, 4);
break;
@ -3224,6 +3239,9 @@ ULONG ComplexStructSize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat)
case RPC_FC_POINTER:
size += sizeof(void *);
break;
case RPC_FC_ALIGNM2:
ALIGN_LENGTH(size, 2);
break;
case RPC_FC_ALIGNM4:
ALIGN_LENGTH(size, 4);
break;