blob: 5f8646577e8641f24650a48425e71c137ffe42d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef _KVI_OSINFO_H_
#define _KVI_OSINFO_H_
///////////////////////////////////////////////////////////////////////////////
//
// File : kvi_osinfo.h
// Creation date : 19 Jan 2006 GMT by Alexey Uzhva
//
// This toolbar is part of the KVirc irc client distribution
// Copyright (C) 2006 Alexey Uzhva
//
// 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 opinion) 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. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
///////////////////////////////////////////////////////////////////////////////
#include "kvi_settings.h"
#include <tqstring.h>
namespace KviOsInfo
{
extern KVILIB_API TQString type();
extern KVILIB_API TQString name();
extern KVILIB_API TQString version();
extern KVILIB_API TQString release();
extern KVILIB_API TQString machine();
extern KVILIB_API TQString nodename();
extern KVILIB_API TQString hostname();
};
#endif //!_KVI_OSINFO_H_
|