-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug:v/42364 Adding AVRCP metadata feature Signed-off-by: jialu <[email protected]>
- Loading branch information
Showing
7 changed files
with
302 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module [email protected] | ||
|
||
callback startGetElementAttributeSuccess() | ||
callback startGetElementAttributeFail(string data, int code) | ||
callback startGetElementAttributeComplete() | ||
struct StartGetElementAttributeParams { | ||
string deviceId | ||
callback startGetElementAttributeSuccess success | ||
callback startGetElementAttributeFail fail | ||
callback startGetElementAttributeComplete complete | ||
} | ||
void startGetElementAttribute(StartGetElementAttributeParams params) | ||
|
||
struct attr_info_t { | ||
int attrId | ||
int chrSet | ||
string text | ||
} | ||
|
||
struct OnElementAttributeData { | ||
string deviceId | ||
int attrsCount | ||
attr_info_t[] attrs; | ||
} | ||
|
||
callback ElementAttributeCallback(OnElementAttributeData data) | ||
property ElementAttributeCallback onElementattribute |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.