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
45d5ff01
Commit
45d5ff01
authored
Feb 07, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Better match the PSDK types and fix the winapi_check warnings.
parent
37eb0955
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
11 deletions
+27
-11
ndr_clientserver.c
dlls/rpcrt4/ndr_clientserver.c
+3
-3
rpc_epmap.c
dlls/rpcrt4/rpc_epmap.c
+1
-1
rpcndr.h
include/rpcndr.h
+3
-3
win32.api
tools/winapi/win32.api
+20
-4
No files found.
dlls/rpcrt4/ndr_clientserver.c
View file @
45d5ff01
...
@@ -129,7 +129,7 @@ unsigned char* WINAPI NdrServerInitializeNew( PRPC_MESSAGE pRpcMsg, PMIDL_STUB_M
...
@@ -129,7 +129,7 @@ unsigned char* WINAPI NdrServerInitializeNew( PRPC_MESSAGE pRpcMsg, PMIDL_STUB_M
/***********************************************************************
/***********************************************************************
* NdrGetBuffer [RPCRT4.@]
* NdrGetBuffer [RPCRT4.@]
*/
*/
unsigned
char
*
WINAPI
NdrGetBuffer
(
MIDL_STUB_MESSAGE
*
stubmsg
,
ULONG
buflen
,
RPC_BINDING_HANDLE
handle
)
unsigned
char
*
WINAPI
NdrGetBuffer
(
PMIDL_STUB_MESSAGE
stubmsg
,
ULONG
buflen
,
RPC_BINDING_HANDLE
handle
)
{
{
TRACE
(
"(stubmsg == ^%p, buflen == %u, handle == %p): wild guess.
\n
"
,
stubmsg
,
buflen
,
handle
);
TRACE
(
"(stubmsg == ^%p, buflen == %u, handle == %p): wild guess.
\n
"
,
stubmsg
,
buflen
,
handle
);
...
@@ -150,7 +150,7 @@ unsigned char *WINAPI NdrGetBuffer(MIDL_STUB_MESSAGE *stubmsg, ULONG buflen, RPC
...
@@ -150,7 +150,7 @@ unsigned char *WINAPI NdrGetBuffer(MIDL_STUB_MESSAGE *stubmsg, ULONG buflen, RPC
/***********************************************************************
/***********************************************************************
* NdrFreeBuffer [RPCRT4.@]
* NdrFreeBuffer [RPCRT4.@]
*/
*/
void
WINAPI
NdrFreeBuffer
(
MIDL_STUB_MESSAGE
*
pStubMsg
)
void
WINAPI
NdrFreeBuffer
(
PMIDL_STUB_MESSAGE
pStubMsg
)
{
{
TRACE
(
"(pStubMsg == ^%p): wild guess.
\n
"
,
pStubMsg
);
TRACE
(
"(pStubMsg == ^%p): wild guess.
\n
"
,
pStubMsg
);
I_RpcFreeBuffer
(
pStubMsg
->
RpcMsg
);
I_RpcFreeBuffer
(
pStubMsg
->
RpcMsg
);
...
@@ -161,7 +161,7 @@ void WINAPI NdrFreeBuffer(MIDL_STUB_MESSAGE *pStubMsg)
...
@@ -161,7 +161,7 @@ void WINAPI NdrFreeBuffer(MIDL_STUB_MESSAGE *pStubMsg)
/************************************************************************
/************************************************************************
* NdrSendReceive [RPCRT4.@]
* NdrSendReceive [RPCRT4.@]
*/
*/
unsigned
char
*
WINAPI
NdrSendReceive
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
char
*
buffer
)
unsigned
char
*
WINAPI
NdrSendReceive
(
PMIDL_STUB_MESSAGE
stubmsg
,
unsigned
char
*
buffer
)
{
{
RPC_STATUS
status
;
RPC_STATUS
status
;
...
...
dlls/rpcrt4/rpc_epmap.c
View file @
45d5ff01
...
@@ -258,7 +258,7 @@ typedef struct twr_t
...
@@ -258,7 +258,7 @@ typedef struct twr_t
* TowerExplode (RPCRT4.@)
* TowerExplode (RPCRT4.@)
*/
*/
RPC_STATUS
WINAPI
TowerExplode
(
RPC_STATUS
WINAPI
TowerExplode
(
const
twr_t
*
tower
,
RPC_SYNTAX_IDENTIFIER
*
object
,
RPC_SYNTAX_IDENTIFIER
*
syntax
,
const
twr_t
*
tower
,
PRPC_SYNTAX_IDENTIFIER
object
,
PRPC_SYNTAX_IDENTIFIER
syntax
,
char
**
protseq
,
char
**
endpoint
,
char
**
address
)
char
**
protseq
,
char
**
endpoint
,
char
**
address
)
{
{
size_t
tower_size
;
size_t
tower_size
;
...
...
include/rpcndr.h
View file @
45d5ff01
...
@@ -610,11 +610,11 @@ RPCRTAPI void RPC_ENTRY
...
@@ -610,11 +610,11 @@ RPCRTAPI void RPC_ENTRY
RPCRTAPI
unsigned
char
*
RPC_ENTRY
RPCRTAPI
unsigned
char
*
RPC_ENTRY
NdrServerInitializeNew
(
PRPC_MESSAGE
pRpcMsg
,
PMIDL_STUB_MESSAGE
pStubMsg
,
PMIDL_STUB_DESC
pStubDesc
);
NdrServerInitializeNew
(
PRPC_MESSAGE
pRpcMsg
,
PMIDL_STUB_MESSAGE
pStubMsg
,
PMIDL_STUB_DESC
pStubDesc
);
RPCRTAPI
unsigned
char
*
RPC_ENTRY
RPCRTAPI
unsigned
char
*
RPC_ENTRY
NdrGetBuffer
(
MIDL_STUB_MESSAGE
*
stubmsg
,
ULONG
buflen
,
RPC_BINDING_HANDLE
handle
);
NdrGetBuffer
(
PMIDL_STUB_MESSAGE
stubmsg
,
ULONG
buflen
,
RPC_BINDING_HANDLE
handle
);
RPCRTAPI
void
RPC_ENTRY
RPCRTAPI
void
RPC_ENTRY
NdrFreeBuffer
(
MIDL_STUB_MESSAGE
*
pStubMsg
);
NdrFreeBuffer
(
PMIDL_STUB_MESSAGE
pStubMsg
);
RPCRTAPI
unsigned
char
*
RPC_ENTRY
RPCRTAPI
unsigned
char
*
RPC_ENTRY
NdrSendReceive
(
MIDL_STUB_MESSAGE
*
stubmsg
,
unsigned
char
*
buffer
);
NdrSendReceive
(
PMIDL_STUB_MESSAGE
stubmsg
,
unsigned
char
*
buffer
);
RPCRTAPI
unsigned
char
*
RPC_ENTRY
RPCRTAPI
unsigned
char
*
RPC_ENTRY
NdrNsGetBuffer
(
PMIDL_STUB_MESSAGE
pStubMsg
,
ULONG
BufferLength
,
RPC_BINDING_HANDLE
Handle
);
NdrNsGetBuffer
(
PMIDL_STUB_MESSAGE
pStubMsg
,
ULONG
BufferLength
,
RPC_BINDING_HANDLE
Handle
);
...
...
tools/winapi/win32.api
View file @
45d5ff01
...
@@ -3624,6 +3624,7 @@ RPC_IF_HANDLE
...
@@ -3624,6 +3624,7 @@ RPC_IF_HANDLE
RPC_STATUS
RPC_STATUS
UINT
UINT
ULONG
ULONG
XLAT_SIDE
int
int
size_t
size_t
unsigned char
unsigned char
...
@@ -3649,47 +3650,62 @@ LPTYPEINFO
...
@@ -3649,47 +3650,62 @@ LPTYPEINFO
LPUNKNOWN
LPUNKNOWN
LPVOID
LPVOID
LPVOID *
LPVOID *
LPWSTR *
MIDL_STUB_MESSAGE *
MIDL_STUB_MESSAGE *
NDR_CCONTEXT
NDR_CCONTEXT
NDR_CCONTEXT *
NDR_CCONTEXT *
NDR_RUNDOWN
NDR_RUNDOWN
NDR_SCONTEXT
NDR_SCONTEXT
PFORMAT_STRING
PFORMAT_STRING
PFULL_PTR_XLAT_TABLES
PMIDL_STUB_DESC
PMIDL_STUB_DESC
PMIDL_STUB_MESSAGE
PMIDL_STUB_MESSAGE
PRPC_MESSAGE
PRPC_MESSAGE
PRPC_POLICY
PRPC_POLICY
PRPCOLEMESSAGE
PRPCOLEMESSAGE
PRPC_SYNTAX_IDENTIFIER
ProxyFileInfo **
ProxyFileInfo **
REFCLSID
REFCLSID
REFIID
REFIID
RPC_AUTH_KEY_RETRIEVAL_FN
RPC_AUTH_KEY_RETRIEVAL_FN
RPC_AUTH_IDENTITY_HANDLE
RPC_AUTH_IDENTITY_HANDLE *
RPC_BINDING_HANDLE *
RPC_BINDING_HANDLE *
RPC_BINDING_VECTOR *
RPC_BINDING_VECTOR *
RPC_BINDING_VECTOR **
RPC_BINDING_VECTOR **
RPC_BLOCKING_FN
RPC_BLOCKING_FN
RPC_CSTR *
RPC_EP_INQ_HANDLE *
RPC_IF_CALLBACK_FN *
RPC_IF_CALLBACK_FN *
RPC_IF_ID *
RPC_IF_ID_VECTOR **
RPC_MGR_EPV *
RPC_MGR_EPV *
RPC_SECURITY_QOS *
RPC_STATUS *
RPC_STATUS *
RPC_SYNTAX_IDENTIFIER *
RPC_WSTR *
UUID *
UUID *
UUID_VECTOR *
UUID_VECTOR *
ULONG *
ULONG *
struct IRpcChannelBuffer *
struct IRpcChannelBuffer *
struct IRpcStubBuffer *
struct IRpcStubBuffer *
twr_t *
twr_t **
unsigned char *
unsigned char *
unsigned char **
unsigned char **
unsigned short *
unsigned short **
void *
void *
void **
%void
%void
void
void
%str
RPC_CSTR
%wstr
%wstr
LP
WSTR
RPC_
WSTR
%%rsaenh.dll
%%rsaenh.dll
...
...
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