Top | ![]() |
![]() |
![]() |
![]() |
The milter-core library includes common features that are used by the milter-client, milter-server and milter-manager libraries.
Applications and libraries that use the milter-core library need to call milter_init()
at the beginning and milter_quit()
at the end:
1 2 3 4 5 6 7 8 9 10 11 |
#include <milter/core.h> int main (int argc, char **argv) { milter_init(); main_codes_that_use_the_milter_core_library(); milter_quit(); return 0; } |