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
8c3fdfea
Commit
8c3fdfea
authored
Dec 14, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Dec 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Make some data const.
parent
ffa84441
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
rpc_transport.c
dlls/rpcrt4/rpc_transport.c
+6
-6
No files found.
dlls/rpcrt4/rpc_transport.c
View file @
8c3fdfea
...
...
@@ -193,7 +193,7 @@ static RPC_STATUS rpcrt4_conn_open_pipe(RpcConnection *Connection, LPCSTR pname,
static
RPC_STATUS
rpcrt4_ncalrpc_open
(
RpcConnection
*
Connection
)
{
RpcConnection_np
*
npc
=
(
RpcConnection_np
*
)
Connection
;
static
LPCSTR
prefix
=
"
\\\\
.
\\
pipe
\\
lrpc
\\
"
;
static
const
char
prefix
[]
=
"
\\\\
.
\\
pipe
\\
lrpc
\\
"
;
RPC_STATUS
r
;
LPSTR
pname
;
...
...
@@ -213,7 +213,7 @@ static RPC_STATUS rpcrt4_ncalrpc_open(RpcConnection* Connection)
static
RPC_STATUS
rpcrt4_protseq_ncalrpc_open_endpoint
(
RpcServerProtseq
*
protseq
,
LPSTR
endpoint
)
{
static
LPCSTR
prefix
=
"
\\\\
.
\\
pipe
\\
lrpc
\\
"
;
static
const
char
prefix
[]
=
"
\\\\
.
\\
pipe
\\
lrpc
\\
"
;
RPC_STATUS
r
;
LPSTR
pname
;
RpcConnection
*
Connection
;
...
...
@@ -241,7 +241,7 @@ static RPC_STATUS rpcrt4_protseq_ncalrpc_open_endpoint(RpcServerProtseq* protseq
static
RPC_STATUS
rpcrt4_ncacn_np_open
(
RpcConnection
*
Connection
)
{
RpcConnection_np
*
npc
=
(
RpcConnection_np
*
)
Connection
;
static
LPCSTR
prefix
=
"
\\\\
."
;
static
const
char
prefix
[]
=
"
\\\\
."
;
RPC_STATUS
r
;
LPSTR
pname
;
...
...
@@ -260,7 +260,7 @@ static RPC_STATUS rpcrt4_ncacn_np_open(RpcConnection* Connection)
static
RPC_STATUS
rpcrt4_protseq_ncacn_np_open_endpoint
(
RpcServerProtseq
*
protseq
,
LPSTR
endpoint
)
{
static
LPCSTR
prefix
=
"
\\\\
."
;
static
const
char
prefix
[]
=
"
\\\\
."
;
RPC_STATUS
r
;
LPSTR
pname
;
RpcConnection
*
Connection
;
...
...
@@ -295,7 +295,7 @@ static RPC_STATUS rpcrt4_ncacn_np_handoff(RpcConnection *old_conn, RpcConnection
{
RPC_STATUS
status
;
LPSTR
pname
;
static
LPCSTR
prefix
=
"
\\\\
."
;
static
const
char
prefix
[]
=
"
\\\\
."
;
rpcrt4_conn_np_handoff
((
RpcConnection_np
*
)
old_conn
,
(
RpcConnection_np
*
)
new_conn
);
...
...
@@ -311,7 +311,7 @@ static RPC_STATUS rpcrt4_ncalrpc_handoff(RpcConnection *old_conn, RpcConnection
{
RPC_STATUS
status
;
LPSTR
pname
;
static
LPCSTR
prefix
=
"
\\\\
.
\\
pipe
\\
lrpc
\\
"
;
static
const
char
prefix
[]
=
"
\\\\
.
\\
pipe
\\
lrpc
\\
"
;
TRACE
(
"%s
\n
"
,
old_conn
->
Endpoint
);
...
...
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