1 /**
2  * WinPR: Windows Portable Runtime
3  * Microsoft Remote Procedure Call (MSRPC)
4  *
5  * Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23 
24 #include <stdio.h>
25 #include <stdlib.h>
26 
27 #include <winpr/rpc.h>
28 
29 #ifndef _WIN32
30 
31 #include "ndr_string.h"
32 #include "ndr_private.h"
33 
NdrConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char * pMemory,PFORMAT_STRING pFormat)34 void NdrConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory,
35                                    PFORMAT_STRING pFormat)
36 {
37 	WLog_ERR(TAG, "warning: NdrConformantStringBufferSize unimplemented");
38 }
39 
NdrNonConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg,unsigned char * pMemory,PFORMAT_STRING pFormat)40 void NdrNonConformantStringBufferSize(PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory,
41                                       PFORMAT_STRING pFormat)
42 {
43 	WLog_ERR(TAG, "warning: NdrNonConformantStringBufferSize unimplemented");
44 }
45 
46 #endif
47