summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-05-28 17:52:25 +0000
committermidipix <writeonce@midipix.org>2019-05-28 20:59:10 +0000
commitd4344e39eef3f7dfe84de7201ccf94204b018b60 (patch)
tree7572e86f1757d7ff61d5012d2aa7231bb09e1587 /include
parent2a7f67d71f9d34c49de6a81e7deab10882bf930f (diff)
downloadntapi-d4344e39eef3f7dfe84de7201ccf94204b018b60.tar.bz2
ntapi-d4344e39eef3f7dfe84de7201ccf94204b018b60.tar.xz
debug interfaces: normalize extension functions (set prefix to tt_debug_).
Diffstat (limited to 'include')
-rw-r--r--include/ntapi/nt_debug.h4
-rw-r--r--include/ntapi/ntapi.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/ntapi/nt_debug.h b/include/ntapi/nt_debug.h
index f5a1d40..7e62af5 100644
--- a/include/ntapi/nt_debug.h
+++ b/include/ntapi/nt_debug.h
@@ -333,11 +333,11 @@ typedef int32_t __stdcall ntapi_zw_set_debug_filter_state(
__in int32_t dbg_state);
/* extension interfaces */
-typedef int32_t __stdcall ntapi_tt_create_debug_object(
+typedef int32_t __stdcall ntapi_tt_debug_create_object(
__out void ** hdbobj,
__in uint32_t flags);
-typedef int32_t __stdcall ntapi_tt_create_attach_debug_object(
+typedef int32_t __stdcall ntapi_tt_debug_create_attach_object(
__out void ** hdbgobj,
__in void * hprocess,
__in uint32_t flags);
diff --git a/include/ntapi/ntapi.h b/include/ntapi/ntapi.h
index 96b0974..634dd56 100644
--- a/include/ntapi/ntapi.h
+++ b/include/ntapi/ntapi.h
@@ -667,8 +667,8 @@ typedef struct _ntapi_vtbl {
ntapi_log_msg * log_msg;
/* nt_debug.h */
- ntapi_tt_create_debug_object * tt_create_debug_object;
- ntapi_tt_create_attach_debug_object * tt_create_attach_debug_object;
+ ntapi_tt_debug_create_object * tt_debug_create_object;
+ ntapi_tt_debug_create_attach_object * tt_debug_create_attach_object;
ntapi_tt_debug_execution_flow * tt_debug_execution_flow;
ntapi_tt_debug_break_process * tt_debug_break_process;
} ntapi_vtbl;