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
24935297
Commit
24935297
authored
Apr 14, 2004
by
Filip Navara
Committed by
Alexandre Julliard
Apr 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the case of RpcNetworkIsProtseqValid[AW] (was
RpcNetworkIsProtSeqValid[AW]) names.
parent
5307b3f5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+5
-5
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+2
-2
rpcdce.h
include/rpcdce.h
+3
-3
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
24935297
...
...
@@ -1021,22 +1021,22 @@ RPC_STATUS WINAPI I_RpcBindingSetAsync( RPC_BINDING_HANDLE Binding, RPC_BLOCKING
}
/***********************************************************************
* RpcNetworkIsProt
S
eqValidA (RPCRT4.@)
* RpcNetworkIsProt
s
eqValidA (RPCRT4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcNetworkIsProt
S
eqValidA
(
unsigned
char
*
protseq
)
{
RPC_STATUS
RPC_ENTRY
RpcNetworkIsProt
s
eqValidA
(
unsigned
char
*
protseq
)
{
UNICODE_STRING
protseqW
;
if
(
!
protseq
)
return
RPC_S_INVALID_RPC_PROTSEQ
;
/* ? */
if
(
RtlCreateUnicodeStringFromAsciiz
(
&
protseqW
,
protseq
))
{
RPC_STATUS
ret
=
RpcNetworkIsProt
S
eqValidW
(
protseqW
.
Buffer
);
RPC_STATUS
ret
=
RpcNetworkIsProt
s
eqValidW
(
protseqW
.
Buffer
);
RtlFreeUnicodeString
(
&
protseqW
);
return
ret
;
}
else
return
RPC_S_OUT_OF_MEMORY
;
}
/***********************************************************************
* RpcNetworkIsProt
S
eqValidW (RPCRT4.@)
* RpcNetworkIsProt
s
eqValidW (RPCRT4.@)
*
* Checks if the given protocol sequence is known by the RPC system.
* If it is, returns RPC_S_OK, otherwise RPC_S_PROTSEQ_NOT_SUPPORTED.
...
...
@@ -1045,7 +1045,7 @@ RPC_STATUS RPC_ENTRY RpcNetworkIsProtSeqValidA(unsigned char *protseq) {
* ncalrpc local-only rpc over LPC (LPC is not really used)
* ncacn_np rpc over named pipes
*/
RPC_STATUS
RPC_ENTRY
RpcNetworkIsProt
S
eqValidW
(
LPWSTR
protseq
)
{
RPC_STATUS
RPC_ENTRY
RpcNetworkIsProt
s
eqValidW
(
LPWSTR
protseq
)
{
static
const
WCHAR
protseqsW
[][
15
]
=
{
{
'n'
,
'c'
,
'a'
,
'l'
,
'r'
,
'p'
,
'c'
,
0
},
{
'n'
,
'c'
,
'a'
,
'c'
,
'n'
,
'_'
,
'n'
,
'p'
,
0
}
...
...
dlls/rpcrt4/rpcrt4.spec
View file @
24935297
...
...
@@ -100,8 +100,8 @@
@ stdcall RpcMgmtWaitServerListen()
@ stub RpcNetworkInqProtseqsA
@ stub RpcNetworkInqProtseqsW
@ st
ub RpcNetworkIsProtseqValidA
@ st
ub RpcNetworkIsProtseqValidW
@ st
dcall RpcNetworkIsProtseqValidA(ptr)
@ st
dcall RpcNetworkIsProtseqValidW(ptr)
@ stub RpcNsBindingInqEntryNameA
@ stub RpcNsBindingInqEntryNameW
@ stub RpcObjectInqType
...
...
include/rpcdce.h
View file @
24935297
...
...
@@ -238,10 +238,10 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
#define RpcStringBindingCompose WINELIB_NAME_AW(RpcStringBindingCompose)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcNetworkIsProt
S
eqValidA
(
unsigned
char
*
protseq
);
RpcNetworkIsProt
s
eqValidA
(
unsigned
char
*
protseq
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcNetworkIsProt
S
eqValidW
(
LPWSTR
protseq
);
#define RpcNetworkIsProt
SeqValid WINELIB_NAME_AW(RpcNetworkIsProtS
eqValid)
RpcNetworkIsProt
s
eqValidW
(
LPWSTR
protseq
);
#define RpcNetworkIsProt
seqValid WINELIB_NAME_AW(RpcNetworkIsProts
eqValid)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcStringFreeA
(
unsigned
char
**
String
);
...
...
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