]> git.tdb.fi Git - gldbg.git/blob - source/arraysize.h
Add extern "C" to arraysize.h
[gldbg.git] / source / arraysize.h
1 /* $Id$
2
3 This file is part of gldbg
4 Copyright © 2009-2010  Mikko Rasa, Mikkosoft Productions
5 Distributed under the GPL
6 */
7
8 #ifndef ARRAYSIZE_H_
9 #define ARRAYSIZE_H_
10
11 #include "opengl.h"
12
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16
17 int typesize(GLenum);
18 int formatsize(GLenum);
19 int paramsize(GLenum);
20 int buffersize(GLenum);
21
22 #ifdef __cplusplus
23 }
24 #endif
25
26 #endif