Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 522 Bytes

mojodds.h

File metadata and controls

22 lines (16 loc) · 522 Bytes
 
May 8, 2011
May 8, 2011
1
2
3
4
#ifndef _INCL_MOJODDS_H_
#define _INCL_MOJODDS_H_
/* !!! FIXME: flesh this file out. */
May 9, 2011
May 9, 2011
5
6
7
#ifdef __cplusplus
extern "C" {
#endif
May 8, 2011
May 8, 2011
8
May 9, 2011
May 9, 2011
9
int MOJODDS_isDDS(const void *_ptr, const unsigned long _len);
May 8, 2011
May 8, 2011
10
int MOJODDS_getTexture(const void *_ptr, const unsigned long _len,
May 10, 2011
May 10, 2011
11
12
const void **_tex, unsigned long *_texlen,
unsigned int *_glfmt, unsigned int *_w,
May 10, 2011
May 10, 2011
13
unsigned int *_h, unsigned int *_miplevels);
May 8, 2011
May 8, 2011
14
May 9, 2011
May 9, 2011
15
16
#ifdef __cplusplus
}
May 8, 2011
May 8, 2011
17
18
#endif
May 9, 2011
May 9, 2011
19
#endif
May 8, 2011
May 8, 2011
20
May 9, 2011
May 9, 2011
21
/* end of mojodds.h ... */