diff options
author | Subv <subv2112@gmail.com> | 2016-11-19 19:07:03 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2016-11-19 19:42:07 +0100 |
commit | d7ab4fd53d3388a99b15a712b54530316ddcbbe5 (patch) | |
tree | e82cc4d736db24a04d23e68eaf9ec903c84db1e5 /src/core/hle/service/apt/apt.h | |
parent | Merge pull request #2172 from jroweboy/fix-mingw (diff) | |
download | yuzu-d7ab4fd53d3388a99b15a712b54530316ddcbbe5.tar yuzu-d7ab4fd53d3388a99b15a712b54530316ddcbbe5.tar.gz yuzu-d7ab4fd53d3388a99b15a712b54530316ddcbbe5.tar.bz2 yuzu-d7ab4fd53d3388a99b15a712b54530316ddcbbe5.tar.lz yuzu-d7ab4fd53d3388a99b15a712b54530316ddcbbe5.tar.xz yuzu-d7ab4fd53d3388a99b15a712b54530316ddcbbe5.tar.zst yuzu-d7ab4fd53d3388a99b15a712b54530316ddcbbe5.zip |
Diffstat (limited to 'src/core/hle/service/apt/apt.h')
-rw-r--r-- | src/core/hle/service/apt/apt.h | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/src/core/hle/service/apt/apt.h b/src/core/hle/service/apt/apt.h index a118cda1f..cbcba96a5 100644 --- a/src/core/hle/service/apt/apt.h +++ b/src/core/hle/service/apt/apt.h @@ -46,12 +46,23 @@ static_assert(sizeof(CaptureBufferInfo) == 0x20, "CaptureBufferInfo struct has i /// Signals used by APT functions enum class SignalType : u32 { None = 0x0, - AppJustStarted = 0x1, - LibAppJustStarted = 0x2, - LibAppFinished = 0x3, - LibAppClosed = 0xA, - ReturningToApp = 0xB, - ExitingApp = 0xC, + Wakeup = 0x1, + Request = 0x2, + Response = 0x3, + Exit = 0x4, + Message = 0x5, + HomeButtonSingle = 0x6, + HomeButtonDouble = 0x7, + DspSleep = 0x8, + DspWakeup = 0x9, + WakeupByExit = 0xA, + WakeupByPause = 0xB, + WakeupByCancel = 0xC, + WakeupByCancelAll = 0xD, + WakeupByPowerButtonClick = 0xE, + WakeupToJumpHome = 0xF, + RequestForSysApplet = 0x10, + WakeupToLaunchApplication = 0x11, }; /// App Id's used by APT functions |