2004-11-26 19:23:49 +03:00
|
|
|
/*
|
2008-03-09 02:12:46 +03:00
|
|
|
* Copyright 2004-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
2004-11-26 19:23:49 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_SAFEMODE_H
|
|
|
|
#define _KERNEL_SAFEMODE_H
|
|
|
|
|
|
|
|
#include <driver_settings.h>
|
|
|
|
|
2008-05-14 07:55:16 +04:00
|
|
|
#include <safemode_defs.h>
|
2004-11-26 19:23:49 +03:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
status_t get_safemode_option(const char *parameter, char *buffer, size_t *_bufferSize);
|
2008-03-09 02:12:46 +03:00
|
|
|
bool get_safemode_boolean(const char *parameter, bool defaultValue);
|
2004-11-26 19:23:49 +03:00
|
|
|
status_t _user_get_safemode_option(const char *parameter, char *buffer, size_t *_bufferSize);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _KERNEL_SAFEMODE_H */
|