wmmoonclock: Bump to version 1.29.
[dockapps.git] / ascd / libworkman / include / wm_database.h
blob0a5296cb35958130cf3addb5da50cabb8cb29641
1 #ifndef WM_DATABASE_H
2 #define WM_DATABASE_H
3 /*
4 * $Id: wm_database.h,v 1.3 1999/02/14 09:50:47 dirk Exp $
6 * This file is part of WorkMan, the civilized CD player library
7 * (c) 1991-1997 by Steven Grimm (original author)
8 * (c) by Dirk Försterling (current 'author' = maintainer)
9 * The maintainer can be contacted by his e-mail address:
10 * milliByte@DeathsDoor.com
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Library General Public
14 * License as published by the Free Software Foundation; either
15 * version 2 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with this library; if not, write to the Free
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 * Prototypes for WorkMan database
28 * This is just one more step to a more modular and understandable code.
32 #define WM_DB_SAVE_ERROR 1
33 #define WM_DB_SAVE_DISABLED 2
35 int wm_db_get_playnew( void );
36 void split_workmandb( void );
37 int save( void );
38 void load( void );
39 void load_settings( void );
41 extern int wm_db_save_disabled;
42 extern int cur_playnew;
44 #endif /* WM_DATABASE_H */