summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_debug.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-28 14:43:12 -0400
committermidipix <writeonce@midipix.org>2016-05-28 14:43:12 -0400
commitd958316922ea7fc2f5022881435ad67da673192e (patch)
treec4fa9c4a52aeeb0108f9472591b665cc2cd1c69d /include/ntapi/nt_debug.h
parentfa2b40697a7760993e08626e17504d7980a487a3 (diff)
downloadntapi-d958316922ea7fc2f5022881435ad67da673192e.tar.bz2
ntapi-d958316922ea7fc2f5022881435ad67da673192e.tar.xz
code maintenance: debug: change type of 'char *' parameters to 'const char *'.
Diffstat (limited to 'include/ntapi/nt_debug.h')
-rw-r--r--include/ntapi/nt_debug.h10
1 files changed, 5 insertions, 5 deletions
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,