2002-10-10 21:23:33 +02:00
|
|
|
/*
|
|
|
|
* NDR definitions
|
|
|
|
*
|
2008-10-18 19:20:44 +02:00
|
|
|
* Copyright 2001 Ove Kåven, TransGaming Technologies
|
2002-10-10 21:23:33 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-10-10 21:23:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_NDR_MISC_H
|
|
|
|
#define __WINE_NDR_MISC_H
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "rpc.h"
|
2002-10-25 21:03:43 +02:00
|
|
|
#include "rpcndr.h"
|
2002-10-19 21:14:25 +02:00
|
|
|
|
2002-10-10 21:23:33 +02:00
|
|
|
struct IPSFactoryBuffer;
|
|
|
|
|
2005-11-28 11:16:44 +01:00
|
|
|
PFORMAT_STRING ComputeConformanceOrVariance(
|
|
|
|
MIDL_STUB_MESSAGE *pStubMsg, unsigned char *pMemory,
|
2006-11-09 23:02:49 +01:00
|
|
|
PFORMAT_STRING pFormat, ULONG_PTR def, ULONG_PTR *pCount);
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2006-06-02 21:46:16 +02:00
|
|
|
static inline PFORMAT_STRING ComputeConformance(PMIDL_STUB_MESSAGE pStubMsg, unsigned char *pMemory, PFORMAT_STRING pFormat, ULONG def)
|
|
|
|
{
|
|
|
|
return ComputeConformanceOrVariance(pStubMsg, pMemory, pFormat, def, &pStubMsg->MaxCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline PFORMAT_STRING ComputeVariance(PMIDL_STUB_MESSAGE pStubMsg, unsigned char *pMemory, PFORMAT_STRING pFormat, ULONG def)
|
|
|
|
{
|
2006-11-07 22:01:45 +01:00
|
|
|
PFORMAT_STRING ret;
|
|
|
|
ULONG_PTR ActualCount = pStubMsg->ActualCount;
|
|
|
|
|
2006-06-02 21:46:16 +02:00
|
|
|
pStubMsg->Offset = 0;
|
2006-11-07 22:01:45 +01:00
|
|
|
ret = ComputeConformanceOrVariance(pStubMsg, pMemory, pFormat, def, &ActualCount);
|
|
|
|
pStubMsg->ActualCount = (ULONG)ActualCount;
|
|
|
|
return ret;
|
2006-06-02 21:46:16 +02:00
|
|
|
}
|
|
|
|
|
2003-02-01 01:44:51 +01:00
|
|
|
typedef unsigned char* (WINAPI *NDR_MARSHALL) (PMIDL_STUB_MESSAGE, unsigned char*, PFORMAT_STRING);
|
|
|
|
typedef unsigned char* (WINAPI *NDR_UNMARSHALL)(PMIDL_STUB_MESSAGE, unsigned char**,PFORMAT_STRING, unsigned char);
|
|
|
|
typedef void (WINAPI *NDR_BUFFERSIZE)(PMIDL_STUB_MESSAGE, unsigned char*, PFORMAT_STRING);
|
2006-11-09 23:02:49 +01:00
|
|
|
typedef ULONG (WINAPI *NDR_MEMORYSIZE)(PMIDL_STUB_MESSAGE, PFORMAT_STRING);
|
2003-02-01 01:44:51 +01:00
|
|
|
typedef void (WINAPI *NDR_FREE) (PMIDL_STUB_MESSAGE, unsigned char*, PFORMAT_STRING);
|
|
|
|
|
2006-04-14 14:38:41 +02:00
|
|
|
extern const NDR_MARSHALL NdrMarshaller[];
|
|
|
|
extern const NDR_UNMARSHALL NdrUnmarshaller[];
|
|
|
|
extern const NDR_BUFFERSIZE NdrBufferSizer[];
|
|
|
|
extern const NDR_MEMORYSIZE NdrMemorySizer[];
|
|
|
|
extern const NDR_FREE NdrFreer[];
|
2003-02-01 01:44:51 +01:00
|
|
|
|
2009-04-21 09:59:45 +02:00
|
|
|
ULONG ComplexStructSize(PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat);
|
2008-01-14 12:54:32 +01:00
|
|
|
|
2002-10-10 21:23:33 +02:00
|
|
|
#endif /* __WINE_NDR_MISC_H */
|