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
3c75d938
Commit
3c75d938
authored
Apr 02, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Constify some variables.
parent
b84348c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
service.c
dlls/advapi32/service.c
+3
-3
No files found.
dlls/advapi32/service.c
View file @
3c75d938
...
...
@@ -249,7 +249,7 @@ static inline void service_set_value( struct reg_value *val,
}
static
inline
void
service_set_dword
(
struct
reg_value
*
val
,
LPCWSTR
name
,
DWORD
*
data
)
LPCWSTR
name
,
const
DWORD
*
data
)
{
service_set_value
(
val
,
REG_DWORD
,
name
,
data
,
sizeof
(
DWORD
));
}
...
...
@@ -488,7 +488,7 @@ static BOOL service_send_start_message(HANDLE pipe, LPCWSTR *argv, DWORD argc)
/******************************************************************************
* service_handle_get_status
*/
static
BOOL
service_handle_get_status
(
HANDLE
pipe
,
service_data
*
service
)
static
BOOL
service_handle_get_status
(
HANDLE
pipe
,
const
service_data
*
service
)
{
DWORD
count
=
0
;
TRACE
(
"
\n
"
);
...
...
@@ -545,7 +545,7 @@ static BOOL service_send_control(HANDLE pipe, DWORD dwControl, DWORD *result)
/******************************************************************************
* service_accepts_control
*/
static
BOOL
service_accepts_control
(
service_data
*
service
,
DWORD
dwControl
)
static
BOOL
service_accepts_control
(
const
service_data
*
service
,
DWORD
dwControl
)
{
DWORD
a
=
service
->
status
.
dwControlsAccepted
;
...
...
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