MCPcopy Create free account
hub / github.com/devkitPro/3ds-hbmenu / descriptorInit

Function descriptorInit

source/parsing/descriptor.cpp:9–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7using namespace tinyxml2;
8
9void descriptorInit(descriptor_s* d)
10{
11 if(!d)return;
12
13 d->targetTitles = NULL;
14 d->numTargetTitles = 0;
15
16 d->requestedServices = NULL;
17 d->numRequestedServices = 0;
18
19 d->selectTargetProcess = false;
20 d->autodetectServices = true;
21
22 scannerInit(&d->executableMetadata);
23}
24
25// TODO : error checking
26void descriptorLoad(descriptor_s* d, const char* path)

Callers 1

menuEntryInitFunction · 0.85

Calls 1

scannerInitFunction · 0.85

Tested by

no test coverage detected