diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-02-02 19:56:05 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-02-02 19:56:05 +0100 |
commit | 9774c86d0e8c171f414eecdf6b1b3f9598986b69 (patch) | |
tree | 69ede6a9893ea9f157719ba2d9dfc84d05e4c588 /src/ginput/ginput.c | |
parent | d646a43b6eb9e0cfb8abd37cf56344b8f65619a5 (diff) | |
parent | d2de6c351785f323fd4b2a4e337a95bda4c9a626 (diff) | |
download | uGFX-9774c86d0e8c171f414eecdf6b1b3f9598986b69.tar.gz uGFX-9774c86d0e8c171f414eecdf6b1b3f9598986b69.tar.bz2 uGFX-9774c86d0e8c171f414eecdf6b1b3f9598986b69.zip |
Merge branch 'master' into gwin
Diffstat (limited to 'src/ginput/ginput.c')
-rw-r--r-- | src/ginput/ginput.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/ginput/ginput.c b/src/ginput/ginput.c index 87c4a668..abd16cd8 100644 --- a/src/ginput/ginput.c +++ b/src/ginput/ginput.c @@ -16,11 +16,21 @@ #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) {} +void _ginputInit(void) +{ + /* ToDo */ + + /** + * This should really call an init routine for each ginput sub-system. + * Maybe we'll do this later. + */ +} + +void _ginputDeinit(void) +{ + +} #endif /* GFX_USE_GINPUT */ /** @} */ + |