nut/tools/nut-scanner/nutscan-init.h

50 lines
1.3 KiB
C
Raw Normal View History

2016-07-18 00:11:41 +00:00
/*
* Copyright (C) 2011 - EATON
2012-01-24 10:22:33 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
2016-07-18 00:11:41 +00:00
/*! \file nutscan-init.h
\brief initialisation data
\author Frederic Bohe <fredericbohe@eaton.com>
*/
2012-01-24 10:22:33 +00:00
#ifndef SCAN_INIT
#define SCAN_INIT
2013-11-24 15:00:12 +00:00
#ifdef __cplusplus
/* *INDENT-OFF* */
extern "C" {
/* *INDENT-ON* */
#endif
2012-01-24 10:22:33 +00:00
extern int nutscan_avail_avahi;
extern int nutscan_avail_ipmi;
extern int nutscan_avail_nut;
extern int nutscan_avail_snmp;
extern int nutscan_avail_usb;
extern int nutscan_avail_xml_http;
void nutscan_init(void);
2012-06-01 13:55:19 +00:00
void nutscan_free(void);
2013-11-24 15:00:12 +00:00
#ifdef __cplusplus
/* *INDENT-OFF* */
}
/* *INDENT-ON* */
#endif
2012-01-24 10:22:33 +00:00
#endif