milter.h revision 266692
1/*
2 * Copyright (c) 1999-2003, 2006 Proofpoint, Inc. and its suppliers.
3 *	All rights reserved.
4 *
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 *
9 *
10 *	$Id: milter.h,v 8.42 2013-11-22 20:51:27 ca Exp $
11 */
12
13/*
14**  MILTER.H -- Global definitions for mail filter.
15*/
16
17#ifndef _LIBMILTER_MILTER_H
18# define _LIBMILTER_MILTER_H	1
19
20#include "sendmail.h"
21#include "libmilter/mfapi.h"
22
23/* socket and thread portability */
24# include <pthread.h>
25typedef pthread_t	sthread_t;
26typedef int		socket_t;
27
28#endif /* ! _LIBMILTER_MILTER_H */
29