mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
11 lines
160 B
C
11 lines
160 B
C
typedef struct {
|
|
Handle MemHandle;
|
|
size_t Size;
|
|
} TransferMemory;
|
|
|
|
typedef enum {
|
|
PERM_NONE = 0,
|
|
PERM_R = 1,
|
|
PERM_RW = 3
|
|
} Permission;
|