mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-24 11:46:58 -04:00
Stratosphere: Add Launch Queue to Loader
Modified from RE done by @ogniK5377
This commit is contained in:
parent
864979179a
commit
c8d1342ddf
2 changed files with 65 additions and 0 deletions
19
stratosphere/loader/source/ldr_launch_queue.hpp
Normal file
19
stratosphere/loader/source/ldr_launch_queue.hpp
Normal file
|
@ -0,0 +1,19 @@
|
|||
#pragma once
|
||||
#include <switch.h>
|
||||
|
||||
#define LAUNCH_QUEUE_SIZE (10)
|
||||
#define LAUNCH_QUEUE_FULL (-1)
|
||||
|
||||
#define LAUNCH_QUEUE_ARG_SIZE_MAX (0x8000)
|
||||
|
||||
typedef struct launch_item_t {
|
||||
u64 tid;
|
||||
u64 arg_size;
|
||||
char args[LAUNCH_QUEUE_ARG_SIZE_MAX];
|
||||
} launch_item_t;
|
||||
|
||||
Result launch_queue_add(launch_item_t item);
|
||||
int launch_queue_get_index(u64 TID);
|
||||
int launch_queue_get_free_index(u64 TID = 0);
|
||||
bool launch_queue_contains(u64 TID);
|
||||
void launch_queue_clear();
|
Loading…
Add table
Add a link
Reference in a new issue