feat image load

This commit is contained in:
2026-06-01 09:20:02 +08:00
parent 4bf9a42170
commit 93417ef728
6 changed files with 64 additions and 4 deletions
+5
View File
@@ -1,6 +1,7 @@
#include "ob_reg_callback.h"
#include "anit_screen_grap.h"
#include "create_thread_callback.h"
#include "load_Image_callback.h"
EXTERN_C NTSTATUS DriverEntry(PDRIVER_OBJECT drv_obj, PUNICODE_STRING)
{
@@ -8,11 +9,15 @@ EXTERN_C NTSTATUS DriverEntry(PDRIVER_OBJECT drv_obj, PUNICODE_STRING)
{
ob_call_back::uninstall_ob_callback();
thread_notify_routine::unload_thread_routine();
load_image_notify_routine::remove_image_load_notify_routine();
};
kernel_api::kernel_api_init();
thread_notify_routine::create_thread_routine();
ob_call_back::register_ob_reg_callback();
load_image_notify_routine::create_image_load_notify_routine();
return STATUS_SUCCESS;