Commit 70804336 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

rpcrt4: Add support for FC_ALIGNM2.

parent 86f0634d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment