Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-05 20:44:36 +0000
committerStijn Buys <ingar@osirion.org>2008-02-05 20:44:36 +0000
commita51deebd87036ceb87c77a20117977d077b771e3 (patch)
tree71217d051fe77b562cd92508fe9edb3da6b7cc7a /src/core/func.h
parent8ee5d47d7e1336eb69064ca31e27bbfa7d86b51e (diff)
fixed cvar, added cvars r_width r_height r_fullscreen, added function r_restart
Diffstat (limited to 'src/core/func.h')
-rw-r--r--src/core/func.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/core/func.h b/src/core/func.h
index 1af69c0..ad189b8 100644
--- a/src/core/func.h
+++ b/src/core/func.h
@@ -1,5 +1,5 @@
/*
- core/funct.h
+ core/func.h
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
@@ -7,6 +7,8 @@
#ifndef __INCLUDED_CORE_FUNC_H__
#define __INCLUDED_CORE_FUNC_H__
+#include "sys/sys.h"
+
#include <sstream>
namespace core
@@ -28,8 +30,13 @@ void remove(const std::string &functionname);
/** Returns 0 if the function pointer could not be found
*/
Func find(const std::string &functionname);
-}
-}
+/// list the function registry
+void list();
+
+} // namespace func
+
+} // namespace core
#endif // __INCLUDED_CORE_FUNC_H__
+