diff options
| author | bunnei <bunneidev@gmail.com> | 2016-05-24 17:19:26 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2016-05-24 17:19:26 -0400 |
| commit | 2e5e7d9be0b8caa8ba7ecfde66bde2ca1aac97c8 (patch) | |
| tree | 1ff05e9db556f8d90ddbbced8224c0287a5bf272 /src/core/hle/service/ptm/ptm.h | |
| parent | a316fbb15aedbc23b58474aaca95569788933774 (diff) | |
| parent | 7129611e65096ba2cbe8266f6cb068a9b18981d8 (diff) | |
Merge pull request #1520 from JamePeng/checknew3ds
Implement CheckNew3DS and CheckNew3DSApp
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 4cf7383d1..7ef8877c7 100644 --- a/src/core/hle/service/ptm/ptm.h +++ b/src/core/hle/service/ptm/ptm.h @@ -88,6 +88,14 @@ void GetTotalStepCount(Interface* self); */ void IsLegacyPowerOff(Interface* self); +/** + * PTM::CheckNew3DS service function + * Outputs: + * 1: Result code, 0 on success, otherwise error code + * 2: u8 output: 0 = Old3DS, 1 = New3DS. + */ +void CheckNew3DS(Interface* self); + /// Initialize the PTM service void Init(); |
