Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c14e9ebc
Commit
c14e9ebc
authored
Oct 21, 2002
by
Greg Turner
Committed by
Alexandre Julliard
Oct 21, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix return types of NdrConformantStringMarshall, NdrGetBuffer, and
NdrSendReceive.
parent
b71535eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
11 deletions
+14
-11
ndr_midl.c
dlls/rpcrt4/ndr_midl.c
+11
-8
rpcndr.h
include/rpcndr.h
+3
-3
No files found.
dlls/rpcrt4/ndr_midl.c
View file @
c14e9ebc
...
...
@@ -174,37 +174,40 @@ void WINAPI NdrStubGetBuffer(LPRPCSTUBBUFFER This,
void
WINAPI
NdrClientInitializeNew
(
PRPC_MESSAGE
pRpcMessage
,
PMIDL_STUB_MESSAGE
pStubMsg
,
PMIDL_STUB_DESC
pStubDesc
,
int
unknown
)
{
TRAC
E
(
"stub
\n
"
);
FIXM
E
(
"stub
\n
"
);
}
/***********************************************************************
* NdrConformantStringMarshall [RPCRT4.@]
*/
void
WINAPI
NdrConformantStringMarshall
(
MIDL_STUB_MESSAGE
*
pStubMsg
,
unsigned
char
*
pszMessage
,
unsigned
char
*
WINAPI
NdrConformantStringMarshall
(
MIDL_STUB_MESSAGE
*
pStubMsg
,
unsigned
char
*
pszMessage
,
PFORMAT_STRING
pFormat
)
{
TRACE
(
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
NULL
;
}
/***********************************************************************
* NdrGetBuffer [RPCRT4.@]
*/
void
WINAPI
NdrGetBuffer
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
long
buflen
,
RPC_BINDING_HANDLE
handle
)
unsigned
char
*
WINAPI
NdrGetBuffer
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
long
buflen
,
RPC_BINDING_HANDLE
handle
)
{
TRACE
(
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
NULL
;
}
/***********************************************************************
* NdrFreeBuffer [RPCRT4.@]
*/
void
WINAPI
NdrFreeBuffer
(
MIDL_STUB_MESSAGE
*
pStubMsg
)
{
TRAC
E
(
"stub
\n
"
);
FIXM
E
(
"stub
\n
"
);
}
/************************************************************************
* NdrSendReceive [RPCRT4.@]
*/
void
WINAPI
NdrSendReceive
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
char
*
buffer
)
unsigned
char
*
WINAPI
NdrSendReceive
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
char
*
buffer
)
{
TRACE
(
"stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
NULL
;
}
include/rpcndr.h
View file @
c14e9ebc
...
...
@@ -299,14 +299,14 @@ RPCRTAPI void RPC_ENTRY
RPCRTAPI
void
RPC_ENTRY
NdrClientInitializeNew
(
PRPC_MESSAGE
pRpcMessage
,
PMIDL_STUB_MESSAGE
pStubMsg
,
PMIDL_STUB_DESC
pStubDesc
,
int
unknown
);
RPCRTAPI
void
RPC_ENTRY
RPCRTAPI
unsigned
char
*
RPC_ENTRY
NdrConformantStringMarshall
(
MIDL_STUB_MESSAGE
*
pStubMsg
,
unsigned
char
*
pszMessage
,
PFORMAT_STRING
pFormat
);
RPCRTAPI
void
RPC_ENTRY
RPCRTAPI
unsigned
char
*
RPC_ENTRY
NdrGetBuffer
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
long
buflen
,
RPC_BINDING_HANDLE
handle
);
RPCRTAPI
void
RPC_ENTRY
NdrFreeBuffer
(
MIDL_STUB_MESSAGE
*
pStubMsg
);
RPCRTAPI
void
RPC_ENTRY
RPCRTAPI
unsigned
char
*
RPC_ENTRY
NdrSendReceive
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
char
*
buffer
);
#endif
/*__WINE_RPCNDR_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment