summaryrefslogtreecommitdiff
path: root/src/resources/resourcefunctiontypes.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-08 23:36:03 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-08 23:36:03 +0300
commitbcd8bc4d0981ec25c04423eb1ed6425a28e911d4 (patch)
treefd9dd33fc466903251297cf4ac737bc2bf03fa27 /src/resources/resourcefunctiontypes.h
parent179e13363899112b9a1181eb10e0754b583a63eb (diff)
downloadplus-bcd8bc4d0981ec25c04423eb1ed6425a28e911d4.tar.gz
plus-bcd8bc4d0981ec25c04423eb1ed6425a28e911d4.tar.bz2
plus-bcd8bc4d0981ec25c04423eb1ed6425a28e911d4.tar.xz
plus-bcd8bc4d0981ec25c04423eb1ed6425a28e911d4.zip
Move resourcemanager typedefs into separate files.
Diffstat (limited to 'src/resources/resourcefunctiontypes.h')
-rw-r--r--src/resources/resourcefunctiontypes.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/resources/resourcefunctiontypes.h b/src/resources/resourcefunctiontypes.h
new file mode 100644
index 000000000..3efa4cbd2
--- /dev/null
+++ b/src/resources/resourcefunctiontypes.h
@@ -0,0 +1,41 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2004-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2017 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef RESOURCES_RESOURCEFUNCTIONTYPES_H
+#define RESOURCES_RESOURCEFUNCTIONTYPES_H
+
+#include <string>
+
+#include "localconsts.h"
+
+class Resource;
+
+struct SDL_RWops;
+
+namespace ResourceManager
+{
+ typedef Resource *(*loader)(SDL_RWops *rw,
+ const std::string &name);
+ typedef Resource *(&generator)(const void *const data);
+} // namespace ResourceManager
+
+#endif // RESOURCES_RESOURCEFUNCTIONTYPES_H