summaryrefslogtreecommitdiff
path: root/src/include/common
diff options
context:
space:
mode:
authorMinje Ahn <minje.ahn@samsung.com>2019-05-21 15:24:07 +0900
committerMinje Ahn <minje.ahn@samsung.com>2019-05-21 15:24:07 +0900
commitbec5a260db6a66987d1ec4ac444b4a01b422ccf0 (patch)
treefb04a9e37379346c5f21e784d37e20bc55ee0d93 /src/include/common
parent90626b8365312836b9875522580f9ce01ae27634 (diff)
downloadlibmedia-service-bec5a260db6a66987d1ec4ac444b4a01b422ccf0.tar.gz
libmedia-service-bec5a260db6a66987d1ec4ac444b4a01b422ccf0.tar.bz2
libmedia-service-bec5a260db6a66987d1ec4ac444b4a01b422ccf0.zip
Remove the queue for the folder insertion
No longer needed due to scanner logic changes Change-Id: I22eb66179d2983e821c25bdeb4aa76f91af8195e Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
Diffstat (limited to 'src/include/common')
-rwxr-xr-xsrc/include/common/media-svc-env.h1
-rwxr-xr-xsrc/include/common/media-svc-media-folder.h3
2 files changed, 1 insertions, 3 deletions
diff --git a/src/include/common/media-svc-env.h b/src/include/common/media-svc-env.h
index 42e327a..3dfd52c 100755
--- a/src/include/common/media-svc-env.h
+++ b/src/include/common/media-svc-env.h
@@ -157,7 +157,6 @@ typedef enum {
MEDIA_SVC_QUERY_SET_ITEM_VALIDITY,
MEDIA_SVC_QUERY_MOVE_ITEM,
MEDIA_SVC_QUERY_UPDATE_ITEM,
- MEDIA_SVC_QUERY_INSERT_FOLDER,
MEDIA_SVC_QUERY_UPDATE_COMMON,
} media_svc_query_type_e;
diff --git a/src/include/common/media-svc-media-folder.h b/src/include/common/media-svc-media-folder.h
index 284c4fb..412d6de 100755
--- a/src/include/common/media-svc-media-folder.h
+++ b/src/include/common/media-svc-media-folder.h
@@ -31,9 +31,8 @@ int _media_svc_get_folder_id_by_foldername_with_validity(sqlite3 *handle, const
int _media_svc_update_folder_modified_time_by_folder_uuid(const char *folder_uuid, const char *folder_path, uid_t uid);
int _media_svc_get_and_append_folder(sqlite3 *handle, bool is_direct, const char *storage_id, const char *path, ms_user_storage_type_e storage_type, char *folder_id, uid_t uid);
int _media_svc_get_and_append_folder_id_by_path(sqlite3 *handle, bool is_direct, const char *storage_id, const char *path, ms_user_storage_type_e storage_type, char *folder_id, uid_t uid);
-int _media_svc_get_and_append_folder_id_by_folder_path(sqlite3 *handle, const char *storage_id, const char *path, ms_user_storage_type_e storage_type, char *folder_id, bool stack_query, uid_t uid);
+int _media_svc_get_and_append_folder_id_by_folder_path(sqlite3 *handle, const char *storage_id, const char *path, ms_user_storage_type_e storage_type, uid_t uid);
int _media_svc_set_folder_validity(sqlite3 *handle, bool is_direct, const char *storage_id, const char *start_path, int validity, bool is_recursive, uid_t uid);
-GList ** _media_svc_get_folder_list_ptr(void);
int _media_svc_count_folder_with_path(sqlite3 *handle, const char *storage_id, const char *path, int *count);