Skip to content

Commit

Permalink
rename arena module
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed Feb 24, 2025
1 parent 43de7a2 commit beffe86
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion win32/src/winapi/kernel32/command_line.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use super::UNICODE_STRING;
use crate::{
winapi::{alloc::Arena, String16},
winapi::{arena::Arena, String16},
Machine,
};
use memory::{ExtensionsMut, Mem};
Expand Down
2 changes: 1 addition & 1 deletion win32/src/winapi/kernel32/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::{
loader::{self, Module},
memory::Memory,
segments::SegmentDescriptor,
winapi::{alloc::Arena, handle::Handles, heap::Heap, *},
winapi::{arena::Arena, handle::Handles, heap::Heap, *},
Machine,
};
use ::memory::Mem;
Expand Down
2 changes: 1 addition & 1 deletion win32/src/winapi/kernel32/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use super::{peb_mut, EventObject, KernelObject};
use crate::{
machine::Machine,
winapi::{
alloc::Arena,
arena::Arena,
Str16, HANDLE, {self},
},
};
Expand Down
2 changes: 1 addition & 1 deletion win32/src/winapi/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::memory::Memory;

mod advapi32;
mod alloc;
mod arena;
mod bass;
mod bitmap;
pub mod builtin;
Expand Down

0 comments on commit beffe86

Please sign in to comment.