mirror of
https://github.com/wiiu-env/RPXLoadingModule.git
synced 2024-11-04 17:35:06 +01:00
11 lines
191 B
C
11 lines
191 B
C
|
#pragma once
|
||
|
|
||
|
typedef struct __attribute((packed)) {
|
||
|
uint32_t command;
|
||
|
uint32_t target;
|
||
|
uint32_t filesize;
|
||
|
uint32_t fileoffset;
|
||
|
char path[256];
|
||
|
} LOAD_REQUEST;
|
||
|
|