summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_debug.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-05-25 12:20:51 +0000
committermidipix <writeonce@midipix.org>2019-05-25 22:21:45 -0400
commita7ffe354b225db0b2712af41ea82743fb07758ca (patch)
treea9454d52383574ef94763b0f1303fe0319d6e6e8 /include/ntapi/nt_debug.h
parent1c3ec496b1b788c1b83d5a187e82b45c0bd204f2 (diff)
downloadntapi-a7ffe354b225db0b2712af41ea82743fb07758ca.tar.bz2
ntapi-a7ffe354b225db0b2712af41ea82743fb07758ca.tar.xz
internals: renamed nt_debug.h --> nt_log.h, renamed interfaces accordingly.
Diffstat (limited to 'include/ntapi/nt_debug.h')
-rw-r--r--include/ntapi/nt_debug.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/ntapi/nt_debug.h b/include/ntapi/nt_debug.h
deleted file mode 100644
index a517a78..0000000
--- a/include/ntapi/nt_debug.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef _NT_DEBUG_H_
-#define _NT_DEBUG_H_
-
-#include "nt_abi.h"
-#include "nt_file.h"
-
-typedef ssize_t __cdecl ntapi_dbg_write(
- __in void * hfile,
- __in const void * buf,
- __in size_t bytes);
-
-
-typedef int32_t __cdecl ntapi_dbg_fn_call(
- __in void * hfile __optional,
- __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 const char * source __optional,
- __in int line __optional);
-
-
-typedef int32_t __cdecl ntapi_dbg_msg(
- __in void * hfile __optional,
- __in const char * source __optional,
- __in int line __optional,
- __in const char * fn_caller_name,
- __in const char * fmt,
- __in uintptr_t arg1,
- __in uintptr_t arg2,
- __in uintptr_t arg3,
- __in uintptr_t arg4,
- __in uintptr_t arg5,
- __in uintptr_t arg6,
- __in ntapi_dbg_write* pfn_dbg_write __optional);
-
-#endif