Add 'Tizen Assembly Cache' feature
[platform/core/dotnet/launcher.git] / NativeLauncher / inc / db_manager.h
index dbedde6..59c23d5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd All Rights Reserved
  *
  * Licensed under the Apache License, Version 2.0 (the License);
  * you may not use this file except in compliance with the License.
@@ -31,8 +31,8 @@
 
 sqlite3* dbCreate(std::string path);
 bool dbOpen(sqlite3 *tac_db, std::string path);
-bool dbClose(sqlite3 *tac_db);
-bool dbRollback(sqlite3 *tac_db);
+void dbClose(sqlite3 *tac_db);
+void dbRollback(sqlite3 *tac_db);
 bool dbUpdate(sqlite3 *tac_db, std::string path, std::string query);
 bool dbInsert(sqlite3 *tac_db, std::string path, std::string query);
 std::vector<std::string> dbSelect(sqlite3 *tac_db, std::string path, std::string query);