plugin.h

来自「PIXIL is a small footprint operating env」· C头文件 代码 · 共 23 行

H
23
字号
#ifndef PLUGIN_H_#define PLUGIN_H_typedef struct plugin_struct{    char name[32];    void *handle;    int (*init) (int, char **);  int (*close) (void);  int (*getfd)(void);    int (*read) (char **);    int (*write) (char *, int);    struct plugin_struct *next;}plugin_t;plugin_t *load_plugin(char *filename);void free_plugin(plugin_t *);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?