Adjust some log levels
[platform/core/appfw/pkgmgr-info.git] / include / pkgmgrinfo_basic.h
index cd4023c..e78fd61 100644 (file)
@@ -77,6 +77,7 @@ typedef struct appcontrol_x {
        char *operation;
        char *uri;
        char *mime;
+       GList *privileges;
 } appcontrol_x;
 
 typedef struct compatibility_x {
@@ -88,6 +89,8 @@ typedef struct datacontrol_x {
        char *providerid;
        char *access;
        char *type;
+       char *trusted;
+       GList *privileges;
 } datacontrol_x;
 
 typedef struct splashscreen_x {
@@ -100,12 +103,6 @@ typedef struct splashscreen_x {
        char *color_depth;
 } splashscreen_x;
 
-/* FIXME: For temporary hotfix, will be removed */
-typedef struct support_size_x {
-       char *preview;
-       char *size;
-} support_size_x;
-
 typedef struct privilege_x {
        char *type;
        char *value;
@@ -117,7 +114,6 @@ typedef struct application_x {
        char *nodisplay;        /*attr, default: "false"*/
        char *multiple; /*attr, default: "false"*/
        char *taskmanage;       /*attr, default: "true"*/
-       char *enabled;  /*attr, default: "true"*/
        char *type;     /*attr*/
        char *categories;       /*attr*/
        char *extraid;  /*attr*/
@@ -145,7 +141,8 @@ typedef struct application_x {
        char *support_disable;  /*set from package_x*/
        char *ui_gadget;        /*attr, default: "false"*/
        char *launch_mode;      /*attr, default: "single"*/
-       char *ambient_support;  /*attr, default: "false"*/
+       char *support_ambient;  /*attr, default: "false"*/
+       char *setup_appid;      /*attr*/
        char *alias_appid;      /*attr*/
        char *effective_appid;  /*attr*/
        char *package_type;     /*set from package_x*/
@@ -174,7 +171,6 @@ typedef struct application_x {
        GList *background_category; /*element*/
        GList *appcontrol; /*element*/
        GList *splashscreens; /*element*/
-       GList *support_sizes; /* FIXME */
 } application_x;
 
 typedef struct package_x {
@@ -217,6 +213,12 @@ typedef struct package_x {
        GList *deviceprofile;           /**< package device profile, element*/
 } package_x;
 
+typedef struct updateinfo_x {
+       char *pkgid;
+       char *version;
+       int type;
+} updateinfo_x;
+
 typedef struct package_x manifest_x;
 
 void pkgmgrinfo_basic_free_application(application_x *application);