diff options
author | José Bollo <jose.bollo@iot.bzh> | 2015-12-08 13:16:11 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2015-12-08 13:16:11 +0100 |
commit | 7fc1ab01c2309d3078e3d66cfff05bf27fdad26f (patch) | |
tree | fc8b19c5387e5b921c2b8e9806097896f72e5ee1 /wgt-strings.c | |
parent | 82a1641c0570e6548649dac932853959854cd706 (diff) |
Support for elements of config.xml
This add some elements intended to be used later when handling
data coming from config.xml of widgets.
Change-Id: I1df9eb158d5c37578c9c7a8caa9eb8f85527ca4b
Diffstat (limited to 'wgt-strings.c')
-rw-r--r-- | wgt-strings.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/wgt-strings.c b/wgt-strings.c new file mode 100644 index 0000000..b11bbaf --- /dev/null +++ b/wgt-strings.c @@ -0,0 +1,14 @@ + +const char _config_xml_[] = "config.xml"; +const char _name_[] = "name"; +const char _description_[] = "description"; +const char _author_[] = "author"; +const char _license_[] = "license"; +const char _icon_[] = "icon"; +const char _content_[] = "content"; +const char _feature_[] = "feature"; +const char _preference_[] = "preference"; +const char _width_[] = "width"; +const char _height_[] = "height"; + + |