* ts: Migrate service to Horizon project This PR migrate the `ts` service (stored in `ptm`) to the Horizon project: - It stubs all known IPCs. - IpcServer consts are checked by RE. Closes #6480 * Fix args
15 lines
574 B
C#
15 lines
574 B
C#
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Horizon.Sdk.Sf;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Ts
|
|
{
|
|
interface IMeasurementServer : IServiceObject
|
|
{
|
|
Result GetTemperatureRange(out int minimumTemperature, out int maximumTemperature, Location location);
|
|
Result GetTemperature(out int temperature, Location location);
|
|
Result SetMeasurementMode(Location location, byte measurementMode);
|
|
Result GetTemperatureMilliC(out int temperatureMilliC, Location location);
|
|
Result OpenSession(out ISession session, DeviceCode deviceCode);
|
|
}
|
|
}
|