xref: /freebsd/contrib/sendmail/include/sm/notify.h (revision f126890a)
1 /*
2  * Copyright (c) 2021 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 int sm_notify_init __P((int));
14 int sm_notify_start __P((bool, int));
15 int sm_notify_stop __P((bool, int));
16 int sm_notify_rcv __P((char *, size_t, long));
17 int sm_notify_snd __P((char *, size_t));
18 
19 #endif /* ! SM_NOTIFY_H */
20