1 /* 2 * sf_preproc_info.h 3 * 4 * Copyright (C) 2014-2021 Cisco and/or its affiliates. All rights reserved. 5 * Copyright (C) 2006-2013 Sourcefire, Inc. 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License Version 2 as 9 * published by the Free Software Foundation. You may not use, modify or 10 * distribute this program under any other version of the GNU General 11 * Public License. 12 * 13 * This program is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * GNU General Public License for more details. 17 * 18 * You should have received a copy of the GNU General Public License 19 * along with this program; if not, write to the Free Software 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 21 * 22 * Description: 23 * 24 * This file is part of the dynamically loadable preprocessor library. The 25 * items must be globally defined within the source file of a given 26 * preprocessor. 27 * 28 * Author: Steven A. Sturges <ssturges@sourcefire.com> 29 * 30 * NOTES: 31 * 32 */ 33 #ifndef SF_PREPROC_INFO_H_ 34 #define SF_PREPROC_INFO_H_ 35 36 extern const int MAJOR_VERSION; 37 extern const int MINOR_VERSION; 38 extern const int BUILD_VERSION; 39 extern const char *PREPROC_NAME; 40 41 extern void DYNAMIC_PREPROC_SETUP(void); 42 43 #endif /* SF_PREPROC_INFO_H_ */ 44 45