use correct paths for internal Error

This commit is contained in:
2025-12-07 11:05:53 +00:00
parent b76bb7a0d2
commit cbdcb32fc3
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
use crate::{ use crate::{
Error, error::Error,
sys::{handle::Handle, memory, snapshot}, sys::{handle::Handle, memory, snapshot},
}; };
use derive_more::{Debug, derive::Display}; use derive_more::{Debug, derive::Display};
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::Error; use crate::error::Error;
use std::ops::Deref; use std::ops::Deref;
use windows::Win32::{ use windows::Win32::{
Foundation::{CloseHandle, HANDLE, INVALID_HANDLE_VALUE}, Foundation::{CloseHandle, HANDLE, INVALID_HANDLE_VALUE},
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::{Error, sys::handle::Handle}; use crate::{error::Error, sys::handle::Handle};
use std::{ffi::c_void, ptr}; use std::{ffi::c_void, ptr};
use windows::Win32::System::Diagnostics::Debug::{ReadProcessMemory, WriteProcessMemory}; use windows::Win32::System::Diagnostics::Debug::{ReadProcessMemory, WriteProcessMemory};
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::Error; use crate::error::Error;
use windows::Win32::System::Diagnostics::ToolHelp::{ use windows::Win32::System::Diagnostics::ToolHelp::{
CreateToolhelp32Snapshot, MODULEENTRY32W, Module32FirstW, Module32NextW, PROCESSENTRY32W, CreateToolhelp32Snapshot, MODULEENTRY32W, Module32FirstW, Module32NextW, PROCESSENTRY32W,
Process32FirstW, Process32NextW, TH32CS_SNAPMODULE, TH32CS_SNAPMODULE32, TH32CS_SNAPPROCESS, Process32FirstW, Process32NextW, TH32CS_SNAPMODULE, TH32CS_SNAPMODULE32, TH32CS_SNAPPROCESS,