rpcrt4: Fix some comments and move the NdrSimpleType* functions out from amongst the NdrSimpleStruct* ones.
This commit is contained in:
parent
3098199e0b
commit
9ba57efc18
|
@ -1402,6 +1402,24 @@ void WINAPI NdrPointerFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|||
PointerFree(pStubMsg, pMemory, pFormat);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* NdrSimpleTypeMarshall [RPCRT4.@]
|
||||
*/
|
||||
void WINAPI NdrSimpleTypeMarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory,
|
||||
unsigned char FormatChar )
|
||||
{
|
||||
FIXME("stub\n");
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* NdrSimpleTypeUnmarshall [RPCRT4.@]
|
||||
*/
|
||||
void WINAPI NdrSimpleTypeUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory,
|
||||
unsigned char FormatChar )
|
||||
{
|
||||
FIXME("stub\n");
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* NdrSimpleStructMarshall [RPCRT4.@]
|
||||
*/
|
||||
|
@ -1460,27 +1478,6 @@ unsigned char * WINAPI NdrSimpleStructUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* NdrSimpleStructUnmarshall [RPCRT4.@]
|
||||
*/
|
||||
void WINAPI NdrSimpleTypeMarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory,
|
||||
unsigned char FormatChar )
|
||||
{
|
||||
FIXME("stub\n");
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* NdrSimpleStructUnmarshall [RPCRT4.@]
|
||||
*/
|
||||
void WINAPI NdrSimpleTypeUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory,
|
||||
unsigned char FormatChar )
|
||||
{
|
||||
FIXME("stub\n");
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* NdrSimpleStructBufferSize [RPCRT4.@]
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue