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
36fa7d50
Commit
36fa7d50
authored
Oct 22, 2002
by
Greg Turner
Committed by
Alexandre Julliard
Oct 22, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- ClientCall2 still deserves a FIXME.
- Complete bindings with NULL endpoints. - Implement RpcServerUseProtseqA, RpcServerUseProtseqW.
parent
b1df392f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
7 deletions
+15
-7
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+1
-1
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+10
-2
rpc_server.c
dlls/rpcrt4/rpc_server.c
+4
-4
No files found.
dlls/rpcrt4/ndr_stubless.c
View file @
36fa7d50
...
...
@@ -49,7 +49,7 @@ LONG_PTR /* CLIENT_CALL_RETURN */ RPCRT4_NdrClientCall2(PMIDL_STUB_DESC pStubDes
RPC_MESSAGE
rpcmsg
;
MIDL_STUB_MESSAGE
stubmsg
;
TRAC
E
(
"(pStubDec == ^%p,pFormat = ^%p,...): semi-stub
\n
"
,
pStubDesc
,
pFormat
);
FIXM
E
(
"(pStubDec == ^%p,pFormat = ^%p,...): semi-stub
\n
"
,
pStubDesc
,
pFormat
);
if
(
rpc_cli_if
)
/* NULL for objects */
{
TRACE
(
" *rpc_cli_if (== ^%p) == (RPC_CLIENT_INTERFACE):
\n
"
,
pStubDesc
);
TRACE
(
" Length == %d
\n
"
,
rpc_cli_if
->
Length
);
...
...
dlls/rpcrt4/rpc_binding.c
View file @
36fa7d50
...
...
@@ -136,7 +136,11 @@ RPC_STATUS RPCRT4_CompleteBindingA(RpcBinding* Binding, LPSTR NetworkAddr, LPST
RPCRT4_strfree
(
Binding
->
NetworkAddr
);
Binding
->
NetworkAddr
=
RPCRT4_strdupA
(
NetworkAddr
);
RPCRT4_strfree
(
Binding
->
Endpoint
);
Binding
->
Endpoint
=
RPCRT4_strdupA
(
Endpoint
);
if
(
Binding
->
Endpoint
)
{
Binding
->
Endpoint
=
RPCRT4_strdupA
(
Endpoint
);
}
else
{
Binding
->
Endpoint
=
RPCRT4_strdupA
(
""
);
}
return
RPC_S_OK
;
}
...
...
@@ -150,7 +154,11 @@ RPC_STATUS RPCRT4_CompleteBindingW(RpcBinding* Binding, LPWSTR NetworkAddr, LPWS
RPCRT4_strfree
(
Binding
->
NetworkAddr
);
Binding
->
NetworkAddr
=
RPCRT4_strdupWtoA
(
NetworkAddr
);
RPCRT4_strfree
(
Binding
->
Endpoint
);
Binding
->
Endpoint
=
RPCRT4_strdupWtoA
(
Endpoint
);
if
(
Binding
->
Endpoint
)
{
Binding
->
Endpoint
=
RPCRT4_strdupWtoA
(
Endpoint
);
}
else
{
Binding
->
Endpoint
=
RPCRT4_strdupA
(
""
);
}
return
RPC_S_OK
;
}
...
...
dlls/rpcrt4/rpc_server.c
View file @
36fa7d50
...
...
@@ -440,8 +440,8 @@ RPC_STATUS WINAPI RpcServerUseProtseqEpExW( LPWSTR Protseq, UINT MaxCalls, LPWST
*/
RPC_STATUS
WINAPI
RpcServerUseProtseqA
(
LPSTR
Protseq
,
unsigned
int
MaxCalls
,
void
*
SecurityDescriptor
)
{
FIXME
(
"stub
\n
"
);
return
R
PC_S_OK
;
TRACE
(
"(Protseq == %s, MaxCalls == %d, SecurityDescriptor == ^%p)"
,
debugstr_a
(
Protseq
),
MaxCalls
,
SecurityDescriptor
);
return
R
pcServerUseProtseqEpA
(
Protseq
,
MaxCalls
,
NULL
,
SecurityDescriptor
)
;
}
/***********************************************************************
...
...
@@ -449,8 +449,8 @@ RPC_STATUS WINAPI RpcServerUseProtseqA(LPSTR Protseq, unsigned int MaxCalls, voi
*/
RPC_STATUS
WINAPI
RpcServerUseProtseqW
(
LPWSTR
Protseq
,
unsigned
int
MaxCalls
,
void
*
SecurityDescriptor
)
{
FIXME
(
"stub
\n
"
);
return
R
PC_S_OK
;
TRACE
(
"Protseq == %s, MaxCalls == %d, SecurityDescriptor == ^%p)"
,
debugstr_w
(
Protseq
),
MaxCalls
,
SecurityDescriptor
);
return
R
pcServerUseProtseqEpW
(
Protseq
,
MaxCalls
,
NULL
,
SecurityDescriptor
)
;
}
/***********************************************************************
...
...
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