File: joy.h

package info (click to toggle)
lcdproc 0.5.7-7
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,056 kB
  • ctags: 6,533
  • sloc: ansic: 58,028; sh: 1,963; perl: 681; makefile: 484
file content (11 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LCD_JOY_H
#define LCD_JOY_H

#include "lcd.h"

MODULE_EXPORT int  joy_init (Driver *drvthis);
MODULE_EXPORT void joy_close (Driver *drvthis);

MODULE_EXPORT const char *joy_get_key (Driver *drvthis);

#endif