1 /* pmrfc3164.h
2  * These are the definitions for the RFC3164 parser module.
3  *
4  * File begun on 2009-11-04 by RGerhards
5  *
6  * Copyright 2009 Rainer Gerhards and Adiscon GmbH.
7  *
8  * This file is part of rsyslog.
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *       http://www.apache.org/licenses/LICENSE-2.0
15  *       -or-
16  *       see COPYING.ASL20 in the source distribution
17  *
18  * Unless required by applicable law or agreed to in writing, software
19  * distributed under the License is distributed on an "AS IS" BASIS,
20  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21  * See the License for the specific language governing permissions and
22  * limitations under the License.
23  */
24 #ifndef	PMRFC3164_H_INCLUDED
25 #define	PMRFC3164_H_INCLUDED 1
26 
27 /* prototypes */
28 rsRetVal modInitpmrfc3164(int iIFVersRequested __attribute__((unused)), int *ipIFVersProvided,
29 	rsRetVal (**pQueryEtryPt)(), rsRetVal (*pHostQueryEtryPt)(uchar*, rsRetVal (**)()), modInfo_t*);
30 
31 #endif /* #ifndef PMRFC3164_H_INCLUDED */
32 /* vi:set ai:
33  */
34