diff options
| author | bunnei <bunneidev@gmail.com> | 2015-10-27 16:07:43 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-10-27 16:07:43 -0400 |
| commit | 7e18bcf6e0d429d9aeb23ec85acc762023d359d4 (patch) | |
| tree | 28d97fa0c2607099444e3b1f8f7bd6d0e3d8f1dd /src/core/hle/service/ptm/ptm.h | |
| parent | 8c385a3fc640b66d8d082ad81889363199b3036c (diff) | |
| parent | a06a32c05d54c8941697b95ee67739a844c22814 (diff) | |
Merge pull request #1217 from filfat/master
Add GetTotalStepCount Stub
Diffstat (limited to 'src/core/hle/service/ptm/ptm.h')
| -rw-r--r-- | src/core/hle/service/ptm/ptm.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/service/ptm/ptm.h b/src/core/hle/service/ptm/ptm.h index b690003cb..f2e76441f 100644 --- a/src/core/hle/service/ptm/ptm.h +++ b/src/core/hle/service/ptm/ptm.h @@ -72,6 +72,14 @@ void GetBatteryLevel(Interface* self); void GetBatteryChargeState(Interface* self); /** + * PTM::GetTotalStepCount service function + * Outputs: + * 1 : Result of function, 0 on success, otherwise error code + * 2 : Output of function, * = total step count + */ +void GetTotalStepCount(Interface* self); + +/** * PTM::IsLegacyPowerOff service function * Outputs: * 1: Result code, 0 on success, otherwise error code |
