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
2339b83e
Commit
2339b83e
authored
Nov 01, 2002
by
Greg Turner
Committed by
Alexandre Julliard
Nov 01, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some problems found by winapi_check.
parent
d4730de3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
rpc_server.c
dlls/rpcrt4/rpc_server.c
+1
-1
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+2
-2
rpcdce.h
include/rpcdce.h
+6
-6
rpcdcep.h
include/rpcdcep.h
+2
-2
No files found.
dlls/rpcrt4/rpc_server.c
View file @
2339b83e
...
...
@@ -690,7 +690,7 @@ RPC_STATUS WINAPI I_RpcServerStopListening( void )
/***********************************************************************
* I_RpcWindowProc (RPCRT4.@)
*/
LONG
WINAPI
I_RpcWindowProc
(
HWND
hWnd
,
UINT
Message
,
WPARAM
wParam
,
LPARAM
lParam
)
UINT
WINAPI
I_RpcWindowProc
(
void
*
hWnd
,
UINT
Message
,
UINT
wParam
,
ULONG
lParam
)
{
FIXME
(
"(%p,%08x,%08x,%08lx): stub
\n
"
,
hWnd
,
Message
,
wParam
,
lParam
);
...
...
dlls/rpcrt4/rpcrt4.spec
View file @
2339b83e
...
...
@@ -481,8 +481,8 @@ init RPCRT4_LibMain
@ stub I_RpcBindingInqWireIdForSnego
@ stub I_RpcBindingIsClientLocal
@ stub I_RpcBindingToStaticStringBindingW
@ stdcall I_RpcBindingSetAsync(ptr ptr
long) I_RpcBindingSetAsync # win9x
#
NT version of I_RpcBindingSetAsync has 2 arguments, not 3
@ stdcall I_RpcBindingSetAsync(ptr ptr
) I_RpcBindingSetAsync # winnt
#
9x version of I_RpcBindingSetAsync has 3 arguments, not 2
@ stub I_RpcClearMutex
@ stub I_RpcConnectionInqSockBuffSize
@ stub I_RpcConnectionInqSockBuffSize2
...
...
include/rpcdce.h
View file @
2339b83e
...
...
@@ -37,14 +37,14 @@ typedef struct _RPC_BINDING_VECTOR
{
unsigned
long
Count
;
RPC_BINDING_HANDLE
BindingH
[
1
];
}
RPC_BINDING_VECTOR
;
}
RPC_BINDING_VECTOR
,
*
PRPC_BINDING_VECTOR
;
#define rpc_binding_vector_t RPC_BINDING_VECTOR
typedef
struct
_UUID_VECTOR
{
unsigned
long
Count
;
UUID
*
Uuid
[
1
];
}
UUID_VECTOR
;
}
UUID_VECTOR
,
*
PUUID_VECTOR
;
#define uuid_vector_t UUID_VECTOR
typedef
struct
_RPC_IF_ID
...
...
@@ -144,11 +144,11 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RpcEpResolveBinding
(
RPC_BINDING_HANDLE
Binding
,
RPC_IF_HANDLE
IfSpec
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcEpRegisterA
(
RPC_IF_HANDLE
IfSpec
,
RPC_BINDING_VECTOR
*
BindingVector
,
UUID_VECTOR
*
UuidVector
,
LPSTR
Annotation
);
RpcEpRegisterA
(
RPC_IF_HANDLE
IfSpec
,
PRPC_BINDING_VECTOR
BindingVector
,
PUUID_VECTOR
UuidVector
,
LPSTR
Annotation
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcEpRegisterW
(
RPC_IF_HANDLE
IfSpec
,
RPC_BINDING_VECTOR
*
BindingVector
,
UUID_VECTOR
*
UuidVector
,
LPWSTR
Annotation
);
RpcEpRegisterW
(
RPC_IF_HANDLE
IfSpec
,
PRPC_BINDING_VECTOR
BindingVector
,
PUUID_VECTOR
UuidVector
,
LPWSTR
Annotation
);
#define RpcEpRegister WINELIB_NAME_AW(RpcEpRegister)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
...
...
include/rpcdcep.h
View file @
2339b83e
...
...
@@ -133,8 +133,8 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RPCRTAPI
RPC_STATUS
RPC_ENTRY
I_RpcSetThreadParams
(
int
fClientFree
,
void
*
Context
,
void
*
hWndClient
);
RPCRTAPI
LONG
RPC_ENTRY
I_RpcWindowProc
(
HWND
hWnd
,
UINT
Message
,
WPARAM
wParam
,
LPARAM
lParam
);
RPCRTAPI
UINT
RPC_ENTRY
I_RpcWindowProc
(
void
*
hWnd
,
UINT
Message
,
UINT
wParam
,
ULONG
lParam
);
/* 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