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

Function aptMakeAppletAttr

libctru/include/3ds/services/apt.h:51–54  ·  view source on GitHub ↗

Create an APT_AppletAttr bitfield from its components.

Source from the content-addressed store, hash-verified

49
50/// Create an APT_AppletAttr bitfield from its components.
51static inline APT_AppletAttr aptMakeAppletAttr(APT_AppletPos pos, bool manualGpuRights, bool manualDspRights)
52{
53 return (pos&7) | (manualGpuRights ? BIT(3) : 0) | (manualDspRights ? BIT(4) : 0);
54}
55
56/// APT query reply.
57typedef enum {

Callers 1

aptInitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected