20 lines
574 B
C
20 lines
574 B
C
/**
|
|
* This file has a different license to the rest of the GFX system.
|
|
* You can copy, modify and distribute this file as you see fit.
|
|
* You do not need to publish your source modifications to this file.
|
|
* The only thing you are not permitted to do is to relicense it
|
|
* under a different license.
|
|
*/
|
|
|
|
#ifndef _GFXCONF_H
|
|
#define _GFXCONF_H
|
|
|
|
/* GFX sub-systems to turn on */
|
|
#define GFX_USE_GDISP FALSE
|
|
#define GFX_USE_GWIN FALSE
|
|
#define GFX_USE_GEVENT FALSE
|
|
#define GFX_USE_GTIMER TRUE
|
|
#define GFX_USE_GINPUT FALSE
|
|
|
|
#endif /* _GFXCONF_H */
|