pandorafms/pandora_agents/win32/windows/pandora_wmi.h

42 lines
1.4 KiB
C++

/* Class to manage the Windows Management Instrumentation(WMI).
It depends on disphelper library (http://disphelper.sourceforge.net)
Copyright (C) 2006 Artica ST.
Written by Esteban Sanchez.
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, 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.
*/
#ifndef __PANDORA_WMI_H__
#define __PANDORA_WMI_H__
#include "../pandora.h"
#include "wmi/disphelper.h"
#include <list>
using namespace Pandora;
using namespace std;
namespace Pandora_Wmi {
int isProcessRunning (string process_name);
int isServiceRunning (string service_name);
string getOSName ();
string getOSVersion ();
string getOSBuild ();
string getSystemName ();
};
#endif