From d958316922ea7fc2f5022881435ad67da673192e Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 28 May 2016 14:43:12 -0400 Subject: code maintenance: debug: change type of 'char *' parameters to 'const char *'. --- include/ntapi/nt_debug.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/ntapi/nt_debug.h b/include/ntapi/nt_debug.h index bd07dcc..e73d75a 100644 --- a/include/ntapi/nt_debug.h +++ b/include/ntapi/nt_debug.h @@ -12,20 +12,20 @@ typedef ssize_t __cdecl ntapi_dbg_write( typedef int32_t __cdecl ntapi_dbg_fn_call( __in void * hfile __optional, - __in char * fn_caller_name, + __in const char * fn_caller_name, __in void * fn_callee_addr, __in uintptr_t fn_ret, __in ntapi_dbg_write* pfn_dbg_write __optional, - __in char * source __optional, + __in const char * source __optional, __in int line __optional); typedef int32_t __cdecl ntapi_dbg_msg( __in void * hfile __optional, - __in char * source __optional, + __in const char * source __optional, __in int line __optional, - __in char * fn_caller_name, - __in char * fmt, + __in const char * fn_caller_name, + __in const char * fmt, __in uintptr_t arg1, __in uintptr_t arg2, __in uintptr_t arg3, -- cgit v1.2.3