Module: wine Branch: master Commit: 87791cfe7193f271b1d6fd54a4e2cff95e2aeee3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=87791cfe7193f271b1d6fd54a4...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Sat Jun 23 18:34:32 2007 +0100
ntdll: Constify some variables.
---
dlls/ntdll/file.c | 4 ++-- dlls/ntdll/relay.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c index de779f2..2f23862 100644 --- a/dlls/ntdll/file.c +++ b/dlls/ntdll/file.c @@ -465,7 +465,7 @@ static NTSTATUS get_io_timeouts( HANDLE handle, enum server_fd_type type, ULONG
/* retrieve the timeout for the next wait, in milliseconds */ -static inline int get_next_io_timeout( struct io_timeouts *timeouts, ULONG already ) +static inline int get_next_io_timeout( const struct io_timeouts *timeouts, ULONG already ) { int ret = -1;
@@ -973,7 +973,7 @@ static void WINAPI ioctl_apc( void *arg, IO_STATUS_BLOCK *io, ULONG reserved ) static NTSTATUS server_ioctl_file( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, PVOID apc_context, IO_STATUS_BLOCK *io, ULONG code, - PVOID in_buffer, ULONG in_size, + const void *in_buffer, ULONG in_size, PVOID out_buffer, ULONG out_size ) { struct async_ioctl *async; diff --git a/dlls/ntdll/relay.c b/dlls/ntdll/relay.c index cde1181..0b592ce 100644 --- a/dlls/ntdll/relay.c +++ b/dlls/ntdll/relay.c @@ -242,7 +242,7 @@ static void init_debug_lists(void) * * Check if a given module and function is in the list. */ -static BOOL check_list( const char *module, int ordinal, const char *func, const WCHAR **list ) +static BOOL check_list( const char *module, int ordinal, const char *func, const WCHAR *const *list ) { char ord_str[10];
@@ -320,14 +320,14 @@ static BOOL check_from_module( const WCHAR **includelist, const WCHAR **excludel /*********************************************************************** * RELAY_PrintArgs */ -static inline void RELAY_PrintArgs( int *args, int nb_args, unsigned int typemask ) +static inline void RELAY_PrintArgs( const int *args, int nb_args, unsigned int typemask ) { while (nb_args--) { if ((typemask & 3) && HIWORD(*args)) { if (typemask & 2) - DPRINTF( "%08x %s", *args, debugstr_w((LPWSTR)*args) ); + DPRINTF( "%08x %s", *args, debugstr_w((LPCWSTR)*args) ); else DPRINTF( "%08x %s", *args, debugstr_a((LPCSTR)*args) ); } @@ -367,7 +367,7 @@ __ASM_GLOBAL_FUNC( call_entry_point, * * stack points to the return address, i.e. the first argument is stack[1]. */ -static LONGLONG WINAPI relay_call_from_32( struct relay_descr *descr, unsigned int idx, int *stack ) +static LONGLONG WINAPI relay_call_from_32( struct relay_descr *descr, unsigned int idx, const int *stack ) { LONGLONG ret; WORD ordinal = LOWORD(idx);