Skip to content

Commit

Permalink
[WINDOWS] Cleanup from windows build. (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwielders authored Jan 3, 2024
1 parent 5e5c313 commit e380c61
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions definitions/Definitions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@
#include "definitions.h"

#ifdef __WINDOWS__
#include <interfaces/IAmazonPrime.h>
#include <interfaces/IApplication.h>
#include <interfaces/IAVNClient.h>
#include <interfaces/IAVSClient.h>
#include <interfaces/IBluetooth.h>
#include <interfaces/IBluetoothAudio.h>
#include <interfaces/IButler.h>
#include <interfaces/IBrowser.h>
#include <interfaces/ICapture.h>
Expand All @@ -42,17 +45,22 @@
#include <interfaces/IDsgccClient.h>
#include <interfaces/IExternalBase.h>
#include <interfaces/IGuide.h>
#include <interfaces/IFocus.h>
#include <interfaces/IInputPin.h>
#include <interfaces/IInputSwitch.h>
#include <interfaces/IIPNetwork.h>
#include <interfaces/IKeyHandler.h>
#include <interfaces/ILisa.h>
#include <interfaces/ILanguageTag.h>
#include <interfaces/IMath.h>
#include <interfaces/IMemory.h>
#include <interfaces/IMessenger.h>
#include <interfaces/IMessageControl.h>
#include <interfaces/INetworkControl.h>
#include <interfaces/INetworkTools.h>
#include <interfaces/INetflix.h>
#include <interfaces/INetflixSecurity.h>
#include <interfaces/IPackageManager.h>
#include <interfaces/IPackager.h>
#include <interfaces/IPerformance.h>
#include <interfaces/IPlayerInfo.h>
Expand All @@ -67,9 +75,12 @@
#include <interfaces/IScriptEngine.h>
#include <interfaces/ISecureShellServer.h>
#include <interfaces/IStream.h>
#include <interfaces/IStore.h>
#include <interfaces/IStoreCache.h>
#include <interfaces/ISwitchBoard.h>
#include <interfaces/ISystemCommands.h>
#include <interfaces/ITestController.h>
#include <interfaces/ITextToSpeech.h>
#include <interfaces/ITestUtility.h>
#include <interfaces/ITimeSync.h>
#include <interfaces/ITimeZone.h>
Expand All @@ -78,6 +89,7 @@
#include <interfaces/IWebDriver.h>
#include <interfaces/IWebPA.h>
#include <interfaces/IWebServer.h>
#include <interfaces/IWifiControl.h>
#include <interfaces/IDeviceInfo.h>
#include <interfaces/IWatchDog.h>
#include <interfaces/IZigWave.h>
Expand Down
2 changes: 1 addition & 1 deletion interfaces/IApplication.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ namespace Exchange {
// @property
// @brief Current application visibility
virtual uint32_t Visible(bool& visiblity /* @out */) const = 0;
virtual uint32_t Visible(const bool&) = 0;
virtual uint32_t Visible(const bool) = 0;

// @property
// @brief Current application user interface language
Expand Down
2 changes: 1 addition & 1 deletion interfaces/IDolby.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ namespace Exchange {
// @property
// @brief Enable Atmos Audio Output
// @param enable: enable/disable
virtual uint32_t EnableAtmosOutput(const bool& enable /* @in */) = 0;
virtual uint32_t EnableAtmosOutput(const bool enable /* @in */) = 0;

// @property
// @brief Dolby Mode
Expand Down
8 changes: 4 additions & 4 deletions interfaces/IOCDM.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ struct ISessionExt : virtual public Core::IUnknown {

virtual OCDM_RESULT StoreLicenseData(const uint8_t licenseData[] /* @in @length:licenseDataSize */,
uint16_t licenseDataSize,
uint8_t* secureStopId /* @out @length:16 */)
uint8_t* secureStopId /* @out @maxlength:16 */)
= 0;

virtual OCDM_RESULT SelectKeyId(const uint8_t keyLength,
Expand Down Expand Up @@ -225,7 +225,7 @@ struct IAccessorOCDM : virtual public Core::IUnknown {
virtual uint32_t ResetSecureStops(const std::string& keySystem) = 0;

virtual OCDM_RESULT GetSecureStopIds(const std::string& keySystem,
uint8_t ids[] /* @out @length:idsLength */, uint16_t idsLength,
uint8_t ids[] /* @out @maxlength:idsLength */, uint16_t idsLength,
uint32_t& count /* @inout */)
= 0;

Expand All @@ -247,12 +247,12 @@ struct IAccessorOCDM : virtual public Core::IUnknown {
virtual OCDM_RESULT DeleteSecureStore(const std::string& keySystem) = 0;

virtual OCDM_RESULT GetKeyStoreHash(const std::string& keySystem,
uint8_t keyStoreHash[] /* @out @length:keyStoreHashLength */,
uint8_t keyStoreHash[] /* @out @maxlength:keyStoreHashLength */,
uint16_t keyStoreHashLength)
= 0;

virtual OCDM_RESULT GetSecureStoreHash(const std::string& keySystem,
uint8_t secureStoreHash[] /* @out @length:secureStoreHashLength */,
uint8_t secureStoreHash[] /* @out @maxlength:secureStoreHashLength */,
uint16_t secureStoreHashLength)
= 0;
};
Expand Down

0 comments on commit e380c61

Please sign in to comment.