File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / strongswan / src / sw-collector / sw_collector_dpkg.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 3 09:46:44 2020 UTC (4 years, 1 month ago) by misho
Branches: strongswan, MAIN
CVS tags: v5_9_2p0, v5_8_4p7, HEAD
Strongswan

    1: /*
    2:  * Copyright (C) 2017 Andreas Steffen
    3:  * HSR Hochschule fuer Technik Rapperswil
    4:  *
    5:  * This program is free software; you can redistribute it and/or modify it
    6:  * under the terms of the GNU General Public License as published by the
    7:  * Free Software Foundation; either version 2 of the License, or (at your
    8:  * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
    9:  *
   10:  * This program is distributed in the hope that it will be useful, but
   11:  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   12:  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   13:  * for more details.
   14:  */
   15: 
   16: /**
   17:  * @defgroup sw_collector_dpkg_t sw_collector_dpkg
   18:  * @{ @ingroup sw_collector
   19:  */
   20: 
   21: #ifndef SW_COLLECTOR_DPKG_H_
   22: #define SW_COLLECTOR_DPKG_H_
   23: 
   24: #include <library.h>
   25: 
   26: typedef struct sw_collector_dpkg_t sw_collector_dpkg_t;
   27: 
   28: /**
   29:  * Software collector dpkg object
   30:  */
   31: struct sw_collector_dpkg_t {
   32: 
   33: 	/**
   34: 	 * List of installed software identifiers managed by the
   35: 	 * Debian "dpkg" package manager
   36: 	 *
   37: 	 * @return				Enumerator
   38: 	 */
   39: 	enumerator_t* (*create_sw_enumerator)(sw_collector_dpkg_t *this);
   40: 
   41: 	/**
   42: 	 * Destroy sw_collector_dpkg_t object
   43: 	 */
   44: 	void (*destroy)(sw_collector_dpkg_t *this);
   45: 
   46: };
   47: 
   48: /**
   49:  * Create an sw_collector_dpkg_t instance
   50:  */
   51: sw_collector_dpkg_t* sw_collector_dpkg_create(void);
   52: 
   53: #endif /** SW_COLLECTOR_DPKG_H_ @}*/

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>