2013-05-24 15:26:52 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-24 15:26:52 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-24 15:26:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file src/ginput/ginput.c
|
|
|
|
* @brief GINPUT subsystem common code.
|
|
|
|
*
|
|
|
|
* @addtogroup GINPUT
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#include "gfx.h"
|
|
|
|
|
|
|
|
#if GFX_USE_GINPUT
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This should really call an init routine for each ginput sub-system.
|
|
|
|
* Maybe we'll do this later.
|
|
|
|
*/
|
|
|
|
void _ginputInit(void) {}
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GINPUT */
|
|
|
|
/** @} */
|