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
d1be006f
Commit
d1be006f
authored
Oct 18, 2020
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 19, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcss: Use wide-char string literals.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9764b6fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
rpcss_main.c
programs/rpcss/rpcss_main.c
+5
-5
No files found.
programs/rpcss/rpcss_main.c
View file @
d1be006f
...
...
@@ -36,7 +36,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
static
WCHAR
rpcssW
[]
=
{
'R'
,
'p'
,
'c'
,
'S'
,
's'
,
0
}
;
static
WCHAR
rpcssW
[]
=
L"RpcSs"
;
static
HANDLE
exit_event
;
static
SERVICE_STATUS_HANDLE
service_handle
;
...
...
@@ -149,10 +149,10 @@ static RPC_STATUS RPCSS_Initialize(void)
{
static
unsigned
short
irot_protseq
[]
=
IROT_PROTSEQ
;
static
unsigned
short
irot_endpoint
[]
=
IROT_ENDPOINT
;
static
unsigned
short
epm_protseq
[]
=
{
'n'
,
'c'
,
'a'
,
'c'
,
'n'
,
'_'
,
'n'
,
'p'
,
0
}
;
static
unsigned
short
epm_endpoint
[]
=
{
'\\'
,
'p'
,
'i'
,
'p'
,
'e'
,
'\\'
,
'e'
,
'p'
,
'm'
,
'a'
,
'p'
,
'p'
,
'e'
,
'r'
,
0
}
;
static
unsigned
short
epm_protseq_lrpc
[]
=
{
'n'
,
'c'
,
'a'
,
'l'
,
'r'
,
'p'
,
'c'
,
0
}
;
static
unsigned
short
epm_endpoint_lrpc
[]
=
{
'e'
,
'p'
,
'm'
,
'a'
,
'p'
,
'p'
,
'e'
,
'r'
,
0
}
;
static
unsigned
short
epm_protseq
[]
=
L"ncacn_np"
;
static
unsigned
short
epm_endpoint
[]
=
L"
\\
pipe
\\
epmapper"
;
static
unsigned
short
epm_protseq_lrpc
[]
=
L"ncalrpc"
;
static
unsigned
short
epm_endpoint_lrpc
[]
=
L"epmapper"
;
static
unsigned
short
irpcss_protseq
[]
=
IRPCSS_PROTSEQ
;
static
unsigned
short
irpcss_endpoint
[]
=
IRPCSS_ENDPOINT
;
static
const
struct
protseq_map
...
...
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