mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
12 lines
No EOL
343 B
C++
12 lines
No EOL
343 B
C++
#pragma once
|
|
#include <switch.h>
|
|
|
|
#include "ldr_registration.hpp"
|
|
#include "ldr_launch_queue.hpp"
|
|
|
|
/* Utilities for Process Creation, for Loader. */
|
|
|
|
class ProcessCreation {
|
|
public:
|
|
static Result CreateProcess(Handle *out_process_h, u64 index, char *nca_path, LaunchQueue::LaunchItem *launch_item, u64 flags, Handle reslimit_h);
|
|
}; |