MCPcopy Create free account
hub / github.com/devkitPro/libctru / APT_InquireNotification

Function APT_InquireNotification

libctru/source/services/apt.c:1071–1082  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1069}
1070
1071Result APT_InquireNotification(u32 appID, APT_Signal* signalType)
1072{
1073 u32 cmdbuf[16];
1074 cmdbuf[0]=IPC_MakeHeader(0xB,1,0); // 0xB0040
1075 cmdbuf[1]=appID;
1076
1077 Result ret = aptSendCommand(cmdbuf);
1078 if (R_SUCCEEDED(ret))
1079 *signalType=cmdbuf[2];
1080
1081 return ret;
1082}
1083
1084Result APT_PrepareToJumpToHomeMenu(void)
1085{

Callers 1

aptEventHandlerFunction · 0.85

Calls 2

IPC_MakeHeaderFunction · 0.85
aptSendCommandFunction · 0.85

Tested by

no test coverage detected