代码搜索结果

找到约 10,000 项符合 Button 的代码

button.c

//#include #include #include #include static button_handler_t *button_handlers = NULL; void add_button_handler(button_handler_t *handler) { if (button_han

button.h

#ifndef _BUTTON_H_ #define _BUTTON_H_ #include typedef struct button_handler { char *name; int (*func)(void); char *cmdstr; struct button_handler *next; } button_handler_t; void add_