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

Function APT_CheckNew3DS

libctru/source/services/apt.c:1383–1396  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1381}
1382
1383Result APT_CheckNew3DS(bool* out)
1384{
1385 static bool flagInit, flagValue;
1386 if (!flagInit)
1387 {
1388 *out = false;
1389 Result ret = APT_CheckNew3DS_System(&flagValue);
1390 if (R_FAILED(ret)) return ret;
1391 flagInit = true;
1392 }
1393
1394 *out = flagValue;
1395 return 0;
1396}
1397
1398Result APT_PrepareToDoApplicationJump(u8 flags, u64 programID, u8 mediatype)
1399{

Callers 3

NFC_StartCommsAdapterFunction · 0.85
nfcStopScanningFunction · 0.85
hidShouldUseIrrstFunction · 0.85

Calls 1

APT_CheckNew3DS_SystemFunction · 0.85

Tested by

no test coverage detected