File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 26
26
namespace WPEFramework {
27
27
namespace Exchange {
28
28
29
+ #ifndef RUNTIME_CONFIG
30
+ struct RuntimeConfig {
31
+ bool dial;
32
+ bool wanLanAccess;
33
+ bool thunder;
34
+ int32_t systemMemoryLimit;
35
+ int32_t gpuMemoryLimit;
36
+ std::string envVariables;
37
+ uint32_t userId;
38
+ uint32_t groupId;
39
+ uint32_t dataImageSize;
40
+
41
+ bool resourceManagerClientEnabled;
42
+ std::string dialId;
43
+ std::string command;
44
+ std::string appType;
45
+ std::string appPath;
46
+ std::string runtimePath;
47
+
48
+ std::string logFilePath;
49
+ uint32_t logFileMaxSize;
50
+ std::string logLevels; // json array of strings
51
+ bool mapi;
52
+ std::string fkpsFiles; // json array of strings
53
+
54
+ std::string fireboltVersion;
55
+ bool enableDebugger;
56
+ };
57
+ #define RUNTIME_CONFIG
58
+ #endif
29
59
30
60
// @json 1.0.0 @text:keep
31
61
struct EXTERNAL IPreinstallManager : virtual public Core::IUnknown {
You can’t perform that action at this time.
0 commit comments