libnx
ns.h
Go to the documentation of this file.
1 /**
2  * @file ns.h
3  * @brief NS service IPC wrapper.
4  * @author yellows8
5  * @copyright libnx Authors
6  */
7 #pragma once
8 #include "../types.h"
9 #include "../nacp.h"
10 
11 typedef struct {
12  NacpStruct nacp;
13  u8 icon[0x20000];//JPEG
15 
16 Result nsInitialize(void);
17 void nsExit(void);
18 
19 Result nsGetApplicationControlData(u8 flag, u64 titleID, NsApplicationControlData* buffer, size_t size, size_t* actual_size);
Definition: ns.h:11
u32 Result
Function error code result type.
Definition: types.h:46
uint8_t u8
8-bit unsigned integer.
Definition: types.h:21
uint64_t u64
64-bit unsigned integer.
Definition: types.h:24
Definition: nacp.h:15