ea1a60faa3
git-svn-id: svn://kolibrios.org@9837 a494cfbc-eb01-0410-851d-a64ba20cac60
19 lines
330 B
C
19 lines
330 B
C
#ifndef OGL_FONTS_H_
|
|
#define OGL_FONTS_H_
|
|
|
|
#ifdef __cplusplus
|
|
#define OGL_FONTS_DECL_BEGIN__ extern "C" {
|
|
#define OGL_FONTS_DECL_END__ }
|
|
#else
|
|
#define OGL_FONTS_DECL_BEGIN__
|
|
#define OGL_FONTS_DECL_END__
|
|
#endif
|
|
|
|
OGL_FONTS_DECL_BEGIN__
|
|
|
|
extern unsigned char ogl_font_5x5[256][5][5];
|
|
|
|
OGL_FONTS_DECL_END__
|
|
|
|
#endif /* OGL_FONTS_H_ */
|