EPICS Base  7.0.6.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
iocLog.h
1 /*************************************************************************\
2 * Copyright (c) 2002 The University of Chicago, as Operator of Argonne
3 * National Laboratory.
4 * Copyright (c) 2002 The Regents of the University of California, as
5 * Operator of Los Alamos National Laboratory.
6 * SPDX-License-Identifier: EPICS
7 * EPICS Base is distributed subject to a Software License Agreement found
8 * in file LICENSE that is included with this distribution.
9 \*************************************************************************/
10 
11 /* logClient.h,v 1.5.2.1 2003/07/08 00:08:06 jhill Exp */
12 /*
13  *
14  * Author: Jeffrey O. Hill
15  * Date: 080791
16  */
17 
18 #ifndef INCiocLogh
19 #define INCiocLogh 1
20 #include "libComAPI.h"
21 
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25 
26 /*
27  * ioc log client interface
28  */
29 LIBCOM_API extern int iocLogDisable;
30 LIBCOM_API int epicsStdCall iocLogInit (void);
31 LIBCOM_API void epicsStdCall iocLogShow (unsigned level);
32 LIBCOM_API void epicsStdCall iocLogFlush (void);
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
38 #endif /*INCiocLogh*/