You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apis/XCast/IXCast.h
+12-20Lines changed: 12 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ namespace WPEFramework {
34
34
RUNNING = 0/* @text running */,
35
35
STOPPED = 1/* @text stopped */,
36
36
HIDDEN = 2/* @text suspended */
37
-
};
37
+
};
38
38
39
39
enum StandbyBehavior : uint8_t {
40
40
ACTIVE = 0/* @text active */,
@@ -51,9 +51,9 @@ namespace WPEFramework {
51
51
52
52
53
53
structEXTERNAL ApplicationInfo {
54
-
string appName /* @text names*//* @brief Group of acceptable names for a related application. Application name in request URI must have exact match to one of the names. Otherwise, matching prefix is needed. If the application name in request URI does not match any names or prefixes, then the request shall fail */;
55
-
string prefixes /* @text prefixes*//* @brief If the application name in request URI does not match the list of names, it must contain one of the prefixes.If the application name in request URI does not match any names or prefixes, then the request shall fail */;
56
-
string cors /* @text cors *//* @brief a set of origins allowed for the application. This must not be empty */;
54
+
string appName /* @text name*//* @brief Application name in request URI must have exact match to one of the names. Otherwise, matching prefix is needed. If the application name in request URI does not match any names or prefixes, then the request shall fail */;
55
+
string prefixes /* @text prefix*//* @brief If the application name in request URI does not match the appname given here, it must contain some prefix.If the application name in request URI does not match the appnames or prefix, then the request shall fail */;
56
+
string cors /* @text cors *//* @brief origin allowed for the application. This must not be empty */;
57
57
string query /* @text query *//* @brief query string that need to be appended in launch request */;
58
58
string payload /* @text payload *//* @brief optional payload string that need to be appended in launch request */;
59
59
int allowStop /* @text allowStop *//* @brief is the application (matching name list or prefix list) allowed to stop (no PID presence) after launched */;
@@ -72,12 +72,12 @@ namespace WPEFramework {
72
72
// @param strPayLoad: Payload string to be passed to the application
73
73
// @param strQuery: Query string to be appended in launch request
74
74
// @param strAddDataUrl: Additional data URL to be passed to the application
0 commit comments