00001 /* 00002 * This file is part of settings. 00003 * 00004 * settings is free software: you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation, either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * settings is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00016 */ 00017 00031 #ifndef __ILIAD_STARTUP_DATA_H__ 00032 #define __ILIAD_STARTUP_DATA_H__ 00033 00034 #include <liberregxml/erregapi.h> 00035 00036 #ifdef __cplusplus 00037 extern "C" 00038 { 00039 #endif 00040 00041 #define QUICK_START_GUIDE_PATH "/mnt/free/documents/Reference/10_Quick_Reference" 00042 00043 void iLiad_startup_data_init(void); 00044 void iLiad_startup_data_destroy(void); 00045 void iLiad_startup_data_store(void); 00046 00047 startup_behaviour_t iLiad_startup_data_get_behaviour(void); 00048 void iLiad_startup_data_set_behaviour(startup_behaviour_t behaviour, const gchar *document_path); 00049 00050 #ifdef __cplusplus 00051 } 00052 #endif 00053 00054 #endif // __ILIAD_STARTUP_DATA_H__ 00055
1.5.6