mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 13:58:21 +01:00
invoke driver_settings_init() manually now. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21247 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
346 B
C++
23 lines
346 B
C++
/*
|
|
* Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _FSSH_DRIVER_SETTINGS_PRIV_H
|
|
#define _FSSH_DRIVER_SETTINGS_PRIV_H
|
|
|
|
|
|
#include "fssh_defs.h"
|
|
|
|
|
|
namespace FSShell {
|
|
|
|
|
|
fssh_status_t driver_settings_init();
|
|
|
|
|
|
} // namespace FSShell
|
|
|
|
|
|
#endif // _FSSH_DRIVER_SETTINGS_PRIV_H
|
|
|