mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-15 04:37:51 +00:00
APT: Remove use of Memory::GetPointer
This commit is contained in:
parent
0352176f4c
commit
44dc46d5e1
5 changed files with 36 additions and 35 deletions
|
@ -20,16 +20,14 @@ struct MessageParameter {
|
|||
u32 sender_id = 0;
|
||||
u32 destination_id = 0;
|
||||
u32 signal = 0;
|
||||
u32 buffer_size = 0;
|
||||
Kernel::SharedPtr<Kernel::Object> object = nullptr;
|
||||
u8* data = nullptr;
|
||||
std::vector<u8> buffer;
|
||||
};
|
||||
|
||||
/// Holds information about the parameters used in StartLibraryApplet
|
||||
struct AppletStartupParameter {
|
||||
u32 buffer_size = 0;
|
||||
Kernel::SharedPtr<Kernel::Object> object = nullptr;
|
||||
u8* data = nullptr;
|
||||
std::vector<u8> buffer;
|
||||
};
|
||||
|
||||
/// Used by the application to pass information about the current framebuffer to applets.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue