Commit 39fb7839 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

advapi32: Constify some variables.

parent 3b695ae3
...@@ -276,7 +276,7 @@ static inline void service_set_multi_string( struct reg_value *val, ...@@ -276,7 +276,7 @@ static inline void service_set_multi_string( struct reg_value *val,
} }
static inline LONG service_write_values( HKEY hKey, static inline LONG service_write_values( HKEY hKey,
struct reg_value *val, int n ) const struct reg_value *val, int n )
{ {
LONG r = ERROR_SUCCESS; LONG r = ERROR_SUCCESS;
int i; int i;
...@@ -294,7 +294,7 @@ static inline LONG service_write_values( HKEY hKey, ...@@ -294,7 +294,7 @@ static inline LONG service_write_values( HKEY hKey,
/****************************************************************************** /******************************************************************************
* Service IPC functions * Service IPC functions
*/ */
static LPWSTR service_get_pipe_name(LPWSTR service) static LPWSTR service_get_pipe_name(LPCWSTR service)
{ {
static const WCHAR prefix[] = { '\\','\\','.','\\','p','i','p','e','\\', static const WCHAR prefix[] = { '\\','\\','.','\\','p','i','p','e','\\',
'_','_','w','i','n','e','s','e','r','v','i','c','e','_',0}; '_','_','w','i','n','e','s','e','r','v','i','c','e','_',0};
...@@ -308,7 +308,7 @@ static LPWSTR service_get_pipe_name(LPWSTR service) ...@@ -308,7 +308,7 @@ static LPWSTR service_get_pipe_name(LPWSTR service)
return name; return name;
} }
static HANDLE service_open_pipe(LPWSTR service) static HANDLE service_open_pipe(LPCWSTR service)
{ {
LPWSTR szPipe = service_get_pipe_name( service ); LPWSTR szPipe = service_get_pipe_name( service );
HANDLE handle = INVALID_HANDLE_VALUE; HANDLE handle = INVALID_HANDLE_VALUE;
...@@ -329,7 +329,7 @@ static HANDLE service_open_pipe(LPWSTR service) ...@@ -329,7 +329,7 @@ static HANDLE service_open_pipe(LPWSTR service)
/****************************************************************************** /******************************************************************************
* service_get_event_handle * service_get_event_handle
*/ */
static HANDLE service_get_event_handle(LPWSTR service) static HANDLE service_get_event_handle(LPCWSTR service)
{ {
static const WCHAR prefix[] = { static const WCHAR prefix[] = {
'_','_','w','i','n','e','s','e','r','v','i','c','e','_',0}; '_','_','w','i','n','e','s','e','r','v','i','c','e','_',0};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment