1 /* 2 * Copyright 2004-2008, François Revol, <revol@free.fr>. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _SETTINGS_H 6 #define _SETTINGS_H 7 8 #ifdef __cplusplus 9 extern "C" { 10 #endif 11 12 /* settings */ 13 extern uint32 max_vnodes; 14 extern uint32 max_results; 15 extern bool sync_unlink_queries; 16 17 extern status_t load_settings(void); 18 19 #ifdef __cplusplus 20 } 21 #endif 22 23 #endif /* _SETTINGS_H */ 24