mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 21:02:39 +02:00
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
/**
|
|
* @file ns.h
|
|
* @brief NS service IPC wrapper.
|
|
* @author yellows8
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
#include "../nacp.h"
|
|
#include "../services/fs.h"
|
|
|
|
typedef struct {
|
|
NacpStruct nacp;
|
|
u8 icon[0x20000];//JPEG
|
|
} NsApplicationControlData;
|
|
|
|
Result nsInitialize(void);
|
|
void nsExit(void);
|
|
|
|
Result nsGetApplicationControlData(u8 flag, u64 titleID, NsApplicationControlData* buffer, size_t size, size_t* actual_size);
|
|
|
|
/**
|
|
* @brief Returns the total storage capacity (used + free) from content manager services.
|
|
* @param storage_id Specified FsStorageId. (Must be FsStorageId_SdCard)
|
|
* @param size Pointer to output the total storage size to.
|
|
*/
|
|
Result nsGetTotalSpaceSize(FsStorageId storage_id, u64 *size);
|
|
|
|
/**
|
|
* @brief Returns the available storage capacity from content manager services.
|
|
* @param storage_id Specified FsStorageId. (Must be FsStorageId_SdCard)
|
|
* @param size Pointer to output the free storage size to.
|
|
*/
|
|
Result nsGetFreeSpaceSize(FsStorageId storage_id, u64 *size);
|
|
|
|
Result nsvmInitialize(void);
|
|
void nsvmExit(void);
|
|
|
|
Result nsvmNeedsUpdateVulnerability(bool *out);
|
|
Result nsvmGetSafeSystemVersion(u16 *out);
|
|
|
|
/* ns:dev */
|
|
Result nsdevInitialize();
|
|
void nsdevExit();
|
|
|
|
Result nsdevTerminateProcess(u64 pid);
|
|
Result nsdevTerminateProgram(u64 tid); |