15b0945b5SGregory Neil Shapiro /* 2*d39bd2c1SGregory Neil Shapiro * Copyright (c) 2021 Proofpoint, Inc. and its suppliers. 35b0945b5SGregory Neil Shapiro * All rights reserved. 45b0945b5SGregory Neil Shapiro * 55b0945b5SGregory Neil Shapiro * By using this file, you agree to the terms and conditions set 65b0945b5SGregory Neil Shapiro * forth in the LICENSE file which can be found at the top level of 75b0945b5SGregory Neil Shapiro * the sendmail distribution. 85b0945b5SGregory Neil Shapiro */ 95b0945b5SGregory Neil Shapiro 105b0945b5SGregory Neil Shapiro #ifndef SM_NOTIFY_H 115b0945b5SGregory Neil Shapiro #define SM_NOTIFY_H 125b0945b5SGregory Neil Shapiro 135b0945b5SGregory Neil Shapiro int sm_notify_init __P((int)); 145b0945b5SGregory Neil Shapiro int sm_notify_start __P((bool, int)); 155b0945b5SGregory Neil Shapiro int sm_notify_stop __P((bool, int)); 162fb4f839SGregory Neil Shapiro int sm_notify_rcv __P((char *, size_t, long)); 175b0945b5SGregory Neil Shapiro int sm_notify_snd __P((char *, size_t)); 185b0945b5SGregory Neil Shapiro 19*d39bd2c1SGregory Neil Shapiro #endif /* ! SM_NOTIFY_H */ 20