1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* include/linux/bld.h */ #ifndef _LINUX_BLD_H #define _LINUX_BLD_H #define BLD_TOUCHKEYS_POSITION 950 struct bld_implementation { void (* enable)(void); void (* disable)(void); }; void register_bld_implementation(struct bld_implementation * imp); void touchkey_pressed(void); #endif