eldenring 0.14.0

Structures, bindings, and utilities for From Software's title Elden Ring
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[vtable_rs::vtable]
pub trait ASAllocatorVmt {
    fn destructor(&mut self, flags: u32);

    fn allocate(&self, size: usize) -> *const u8;
    fn allocate_aligned(&self, size: usize, alignment: usize) -> *const u8;
    fn reallocate(&self, allocation: *const u8, size: usize) -> *const u8;
    fn reallocate_aligned(&self, allocation: *const u8, size: usize, alignment: usize)
    -> *const u8;
    fn deallocate(&self, allocation: *const u8);
}