2012-05-05 05:50:32 +04:00
|
|
|
/**
|
|
|
|
* WinPR: Windows Portable Runtime
|
|
|
|
* Microsoft Remote Procedure Call (MSRPC)
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WINPR_RPC_NDR_PRIVATE_H
|
|
|
|
#define WINPR_RPC_NDR_PRIVATE_H
|
|
|
|
|
|
|
|
#include <winpr/rpc.h>
|
|
|
|
|
2014-08-18 20:57:08 +04:00
|
|
|
#include "../log.h"
|
|
|
|
#define TAG WINPR_TAG("rpc")
|
|
|
|
|
2012-10-29 04:55:19 +04:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
void NdrpAlignLength(ULONG* length, unsigned int alignment);
|
|
|
|
void NdrpIncrementLength(ULONG* length, unsigned int size);
|
2012-05-05 05:50:32 +04:00
|
|
|
|
|
|
|
extern const NDR_TYPE_SIZE_ROUTINE pfnSizeRoutines[];
|
|
|
|
extern const NDR_TYPE_MARSHALL_ROUTINE pfnMarshallRoutines[];
|
|
|
|
extern const NDR_TYPE_UNMARSHALL_ROUTINE pfnUnmarshallRoutines[];
|
|
|
|
extern const NDR_TYPE_FREE_ROUTINE pfnFreeRoutines[];
|
|
|
|
|
2016-10-07 15:08:54 +03:00
|
|
|
extern const unsigned char SimpleTypeAlignment[];
|
|
|
|
extern const unsigned char SimpleTypeBufferSize[];
|
|
|
|
extern const unsigned char SimpleTypeMemorySize[];
|
2012-05-05 05:50:32 +04:00
|
|
|
|
2016-10-07 15:08:54 +03:00
|
|
|
extern const unsigned char NdrTypeFlags[];
|
2014-08-18 21:34:47 +04:00
|
|
|
extern const char* FC_TYPE_STRINGS[];
|
2012-05-05 05:50:32 +04:00
|
|
|
|
|
|
|
#include "ndr_correlation.h"
|
|
|
|
|
2012-10-29 04:55:19 +04:00
|
|
|
#endif
|
|
|
|
|
2012-05-05 05:50:32 +04:00
|
|
|
#endif /* WINPR_RPC_NDR_PRIVATE_H */
|