1 /* 2 * Copyright 2004-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _KERNEL_SAFEMODE_H 6 #define _KERNEL_SAFEMODE_H 7 8 #include <driver_settings.h> 9 10 #include <safemode_defs.h> 11 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 status_t get_safemode_option(const char *parameter, char *buffer, size_t *_bufferSize); 18 bool get_safemode_boolean(const char *parameter, bool defaultValue); 19 status_t _user_get_safemode_option(const char *parameter, char *buffer, size_t *_bufferSize); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif /* _KERNEL_SAFEMODE_H */ 26