Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
eaa53a05
Commit
eaa53a05
authored
Oct 31, 2002
by
Greg Turner
Committed by
Alexandre Julliard
Oct 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove #ifdef WINNT conditionals; just use the NT definitions.
parent
f71a83a1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
24 deletions
+2
-24
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+1
-9
rpc_server.c
dlls/rpcrt4/rpc_server.c
+1
-1
rpcdcep.h
include/rpcdcep.h
+0
-14
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
eaa53a05
...
...
@@ -865,21 +865,13 @@ RPC_STATUS WINAPI RpcBindingToStringBindingW( RPC_BINDING_HANDLE Binding, LPWSTR
* Exists in win9x and winNT, but with different number of arguments
* (9x version has 3 arguments, NT has 2).
*/
#ifdef WINNT
RPC_STATUS
WINAPI
I_RpcBindingSetAsync
(
RPC_BINDING_HANDLE
Binding
,
RPC_BLOCKING_FN
BlockingFn
)
#else
RPC_STATUS
WINAPI
I_RpcBindingSetAsync
(
RPC_BINDING_HANDLE
Binding
,
RPC_BLOCKING_FN
BlockingFn
,
unsigned
long
ServerTid
)
#endif
{
RpcBinding
*
bind
=
(
RpcBinding
*
)
Binding
;
TRACE
(
"(%p,%p
,%ld): stub
\n
"
,
Binding
,
BlockingFn
,
ServerTid
);
TRACE
(
"(%p,%p
): stub
\n
"
,
Binding
,
BlockingFn
);
bind
->
BlockingFn
=
BlockingFn
;
#ifndef WINNT
bind
->
ServerTid
=
ServerTid
;
#endif
return
RPC_S_OK
;
}
dlls/rpcrt4/rpc_server.c
View file @
eaa53a05
...
...
@@ -690,7 +690,7 @@ RPC_STATUS WINAPI I_RpcServerStopListening( void )
/***********************************************************************
* I_RpcWindowProc (RPCRT4.@)
*/
UINT
WINAPI
I_RpcWindowProc
(
void
*
hWnd
,
UINT
Message
,
UINT
wParam
,
ULONG
lParam
)
LONG
WINAPI
I_RpcWindowProc
(
HWND
hWnd
,
UINT
Message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
FIXME
(
"(%p,%08x,%08x,%08lx): stub
\n
"
,
hWnd
,
Message
,
wParam
,
lParam
);
...
...
include/rpcdcep.h
View file @
eaa53a05
...
...
@@ -93,11 +93,7 @@ typedef struct _RPC_CLIENT_INTERFACE
#define TRANSPORT_TYPE_LPC 0x04
#define TRANSPORT_TYPE_WMSG 0x08
#ifdef WINNT
typedef
RPC_STATUS
(
*
RPC_BLOCKING_FN
)(
void
*
hWnd
,
void
*
Context
,
HANDLE
hSyncEvent
);
#else
typedef
RPC_STATUS
(
*
RPC_BLOCKING_FN
)(
void
*
hWnd
,
void
*
Context
,
void
*
hSyncEvent
);
#endif
RPCRTAPI
RPC_STATUS
RPC_ENTRY
I_RpcGetBuffer
(
RPC_MESSAGE
*
Message
);
...
...
@@ -130,25 +126,15 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RPCRTAPI
RPC_STATUS
RPC_ENTRY
I_RpcAsyncSendReceive
(
RPC_MESSAGE
*
Message
,
void
*
Context
,
HWND
hWnd
);
#ifdef WINNT
RPCRTAPI
RPC_STATUS
RPC_ENTRY
I_RpcBindingSetAsync
(
RPC_BINDING_HANDLE
Binding
,
RPC_BLOCKING_FN
BlockingFn
);
#else
RPCRTAPI
RPC_STATUS
RPC_ENTRY
I_RpcBindingSetAsync
(
RPC_BINDING_HANDLE
Binding
,
RPC_BLOCKING_FN
BlockingFn
,
unsigned
long
ServerTid
);
#endif
/* WIN9x */
RPCRTAPI
RPC_STATUS
RPC_ENTRY
I_RpcSetThreadParams
(
int
fClientFree
,
void
*
Context
,
void
*
hWndClient
);
#ifdef WINNT
RPCRTAPI
LONG
RPC_ENTRY
I_RpcWindowProc
(
HWND
hWnd
,
UINT
Message
,
WPARAM
wParam
,
LPARAM
lParam
);
#else
RPCRTAPI
unsigned
int
RPC_ENTRY
I_RpcWindowProc
(
void
*
hWnd
,
unsigned
int
Message
,
unsigned
int
wParam
,
unsigned
long
lParam
);
#endif
/* WINNT */
RPCRTAPI
RPC_STATUS
RPC_ENTRY
...
...
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