-
Notifications
You must be signed in to change notification settings - Fork 17
not for merge, test #730
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
not for merge, test #730
Changes from all commits
80ffd7d
09417f8
f8ecdaf
11f3603
f4f8c66
f987937
95b8942
e16ee7a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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 ×tampInSeconds /* @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; | ||||||
|
Comment on lines
+238
to
+241
|
||||||
| virtual Core::hresult GetZOrder(const string& appInstanceId, int32_t &zOrder /* @out */) = 0; | |
| virtual Core::hresult GetZOrder(const string& appInstanceId, int32_t &zOrder /* @out */) const = 0; |
Copilot
AI
Feb 12, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new @retval tag format is missing the required : <Description> portion (e.g., @retval Core::ERROR_NONE: <...>).
Copilot
AI
Feb 12, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
StartVncServer/StopVncServer use mixed-case for the acronym ("Vnc"). Per the repo guideline, acronyms should be fully capitalized; consider renaming to StartVNCServer/StopVNCServer (and updating the corresponding @text JSON-RPC names/docs accordingly) while the API is still new.
Copilot
AI
Feb 12, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new @retval tag format is missing the required : <Description> portion (e.g., @retval Core::ERROR_NONE: <...>).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new
@retvaltag format is inconsistent with the documented requirement (@retval <ErrorCode>: <Description>). Here it is missing the colon + description (e.g.,Core::ERROR_NONE: ...), which can also leak into generated markdown.Refer: https://github.com/rdkcentral/entservices-apis/blob/develop/.github/instructions/api_headers.instructions.md#documentation-tags-guidelines