actube/src/ac/module.h
7u83@mail.ru d2e12bb985 Mod test.
FossilOrigin-Name: c6655a63f94ee32c28d39e0f64f6962ad2c4f0e0941e4a2c6b7eeee17b0c8137
2016-02-14 20:39:36 +00:00

14 lines
196 B
C

#ifndef __MODULE_H
#define __MODULE_H
struct ac_module
{
const char *name;
int (*init)();
int (*detect_by_raw)(const char *msg, int len);
int (*detect_by_discovery)(const char*);
};
#endif