xref: /freebsd/contrib/sendmail/include/sm/notify.h (revision 5d3e7166)
1 /*
2  * Copyright (c) 2016 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 #ifndef SM_NOTIFY_H
11 #define SM_NOTIFY_H
12 
13 /* microseconds */
14 #define SM_MICROS 1000000L
15 
16 int sm_notify_init __P((int));
17 int sm_notify_start __P((bool, int));
18 int sm_notify_stop __P((bool, int));
19 int sm_notify_rcv __P((char *, size_t, long));
20 int sm_notify_snd __P((char *, size_t));
21 
22 #endif /* ! SM_MSG_H */
23