You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
252 B

#ifndef MODGMT_FILTERS_H
#define MODGMT_FILTERS_H
#include <unistd.h>
#include <string>
typedef int (*gmt_filter)(int, std::string*, void*);
int gmt_filter_default(int, std::string*, void*);
int gmt_filter_headfoot(int, std::string*, void*);
#endif