diff options
Diffstat (limited to 'src/debug')
-rw-r--r-- | src/debug/ntapi_tt_debug_create_object.c (renamed from src/debug/ntapi_tt_create_debug_object.c) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/debug/ntapi_tt_create_debug_object.c b/src/debug/ntapi_tt_debug_create_object.c index b091d37..836943e 100644 --- a/src/debug/ntapi_tt_create_debug_object.c +++ b/src/debug/ntapi_tt_debug_create_object.c @@ -71,7 +71,7 @@ static void __dbg_sd_init(nt_sd_common_buffer * sd) } -int32_t __stdcall __ntapi_tt_create_debug_object( +int32_t __stdcall __ntapi_tt_debug_create_object( __out void ** hdbgobj, __in uint32_t flags) { @@ -98,7 +98,7 @@ int32_t __stdcall __ntapi_tt_create_debug_object( &oa,flags); } -int32_t __stdcall __ntapi_tt_create_attach_debug_object( +int32_t __stdcall __ntapi_tt_debug_create_attach_object( __out void ** hdbgobj, __in void * hprocess, __in uint32_t flags) @@ -106,7 +106,7 @@ int32_t __stdcall __ntapi_tt_create_attach_debug_object( int32_t status; void * hdebug; - if ((status = __ntapi_tt_create_debug_object(&hdebug,flags))) + if ((status = __ntapi_tt_debug_create_object(&hdebug,flags))) return status; if ((status = __ntapi->zw_debug_active_process(hprocess,hdebug))) { |