mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
14 lines
390 B
C++
14 lines
390 B
C++
|
#pragma once
|
||
|
#include <switch.h>
|
||
|
|
||
|
#include "ldr_process_creation.hpp"
|
||
|
#include "ldr_registration.hpp"
|
||
|
#include "ldr_launch_queue.hpp"
|
||
|
#include "ldr_content_management.hpp"
|
||
|
#include "ldr_npdm.hpp"
|
||
|
|
||
|
Result ProcessCreation::CreateProcess(Handle *out_process_h, u64 index, char *nca_path, LaunchQueue::LaunchItem *launch_item, u64 flags, Handle reslimit_h) {
|
||
|
/* TODO */
|
||
|
return 0xA09;
|
||
|
}
|