aboutsummaryrefslogtreecommitdiffstats
path: root/src/update.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-27 19:34:54 +0100
committerMax Kellermann <max@duempel.org>2008-11-27 19:34:54 +0100
commitced4abcd642e3bae76e0feed07edfab163956c48 (patch)
tree570ddcfd2e26c863a37574cdbd5b45db78166d27 /src/update.h
parentbd0653f440adf736427d9cc9e3565489cc9a1cde (diff)
downloadmpd-ced4abcd642e3bae76e0feed07edfab163956c48.tar.gz
mpd-ced4abcd642e3bae76e0feed07edfab163956c48.tar.xz
mpd-ced4abcd642e3bae76e0feed07edfab163956c48.zip
update: added update_global_init() and update_global_finish()
Those two functions are called when MPD starts and exits. It allows the update library to perform global initialization and deinitialization. The implementations are currently empty.
Diffstat (limited to 'src/update.h')
-rw-r--r--src/update.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/update.h b/src/update.h
index 4a91061b7..b43ae4c67 100644
--- a/src/update.h
+++ b/src/update.h
@@ -20,6 +20,10 @@
#ifndef MPD_UPDATE_H
#define MPD_UPDATE_H
+void update_global_init(void);
+
+void update_global_finish(void);
+
unsigned
isUpdatingDB(void);