Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion apis/PackageManager/IAppPackageManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ namespace Exchange {
};


// @json 1.0.0 @text:keep
struct EXTERNAL IPackageHandler : virtual public Core::IUnknown {
enum { ID = ID_PACKAGE_HANDLER };

Expand Down
28 changes: 28 additions & 0 deletions apis/RDKWindowManager/IRDKWindowManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,34 @@ struct EXTERNAL IRDKWindowManager : virtual public Core::IUnknown {
// @retval Core::ERROR_NONE: Successfully retrieved the last key press information.
// @retval Core::ERROR_UNAVAILABLE: No key press information is available.
virtual Core::hresult GetLastKeyInfo(uint32_t &keyCode /* @out */, uint32_t &modifiers /* @out */, uint64_t &timestampInSeconds /* @out */) const = 0;

/** Sets the zOrder of the given client or appInstanceId */
// @text setZOrder
// @brief Sets the zOrder of the given client or appInstanceId
// @param appInstanceId: client name or application instance ID
// @param zOrder: integer value indicating the zOrder
// @retval Core::ERROR_NONE on success
virtual Core::hresult SetZOrder(const string& appInstanceId, const int32_t zOrder) = 0;

/** Gets the zOrder of the given client or appInstanceId */
// @text getZOrder
// @brief Gets the zOrder of the given client or appInstanceId
// @param appInstanceId: client name or application instance ID
// @param zOrder: integer value indicating the zOrder of the client
// @retval Core::ERROR_NONE on success
virtual Core::hresult GetZOrder(const string& appInstanceId, int32_t &zOrder /* @out */) = 0;

/** Starts the VNC server */
// @text startVncServer
// @brief Starts the VNC server
// @retval Core::ERROR_NONE on success
virtual Core::hresult StartVncServer() = 0;

/** Stops the VNC server */
// @text stopVncServer
// @brief Stops the VNC server
// @retval Core::ERROR_NONE on success
virtual Core::hresult StopVncServer() = 0;
};
} // namespace Exchange
} // namespace WPEFramework
Loading
Loading