FossilOrigin-Name: 69af8ff1aed86c42241e9347a70353219eddba02b0dbbeb935e068f86ecd207cbsdmakefiles
parent
7e9721f369
commit
84dc9b812a
@ -0,0 +1,22 @@ |
||||
#ifndef __MOD_H |
||||
#define __MOD_H |
||||
|
||||
#include <stddef.h> |
||||
|
||||
struct mod_ac |
||||
{ |
||||
const char *name; |
||||
int (*init)(); |
||||
int (*detect_by_raw)(const char *msg, int len); |
||||
int (*detect_by_discovery)(const char*); |
||||
}; |
||||
|
||||
|
||||
#include "mod/cipwap/mod_cipwap.h" |
||||
|
||||
|
||||
#define MODS_AC { mod_cipwap_ac,NULL } |
||||
|
||||
|
||||
|
||||
#endif |
Loading…
Reference in new issue