aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/others/mimesh/libg3d-0.0.8/plugins/import/imp_skp/imp_skp_read.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/others/mimesh/libg3d-0.0.8/plugins/import/imp_skp/imp_skp_read.h')
-rw-r--r--src/others/mimesh/libg3d-0.0.8/plugins/import/imp_skp/imp_skp_read.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/others/mimesh/libg3d-0.0.8/plugins/import/imp_skp/imp_skp_read.h b/src/others/mimesh/libg3d-0.0.8/plugins/import/imp_skp/imp_skp_read.h
new file mode 100644
index 0000000..fc1dc4d
--- /dev/null
+++ b/src/others/mimesh/libg3d-0.0.8/plugins/import/imp_skp/imp_skp_read.h
@@ -0,0 +1,35 @@
1#ifndef _IMP_SKP_READ_H
2/* $Id:$ */
3
4/*
5 libg3d - 3D object loading library
6
7 Copyright (C) 2005-2009 Markus Dahms <mad@automagically.de>
8
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Lesser General Public
11 License as published by the Free Software Foundation; either
12 version 2.1 of the License, or (at your option) any later version.
13
14 This library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public
20 License along with this library; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22*/
23#define _IMP_SKP_READ_H
24
25#include <g3d/stream.h>
26
27guint32 skp_read_xint16(G3DStream *stream);
28gchar *skp_read_char(G3DStream *stream);
29gchar *skp_read_wchar(G3DStream *stream);
30
31gboolean skp_read_dbl3(G3DStream *stream,
32 gdouble *d1, gdouble *d2, gdouble *d3);
33gboolean skp_read_10b(G3DStream *stream);
34
35#endif /* _IMP_SKP_READ_H */