OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / libs / utils / winutils.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #ifndef WINUTILS_H
34 #define WINUTILS_H
35
36 #include "utils_global.h"
37
38 #include <QtCore/QProcess> // Q_PID (is PROCESS_INFORMATION*)
39
40 QT_BEGIN_NAMESPACE
41 class QString;
42 QT_END_NAMESPACE
43
44 namespace Utils {
45
46 // Helper to format a Windows error message, taking the
47 // code as returned by the GetLastError()-API.
48 QTCREATOR_UTILS_EXPORT QString winErrorMessage(unsigned long error);
49
50 // Determine a DLL version
51 enum WinDLLVersionType { WinDLLFileVersion, WinDLLProductVersion };
52 QTCREATOR_UTILS_EXPORT QString winGetDLLVersion(WinDLLVersionType t,
53                                                 const QString &name,
54                                                 QString *errorMessage);
55
56 // Return the short (8.3) file name
57 QTCREATOR_UTILS_EXPORT QString getShortPathName(const QString &name);
58
59 // Returns long name
60 QTCREATOR_UTILS_EXPORT QString getLongPathName(const QString &name);
61
62 QTCREATOR_UTILS_EXPORT unsigned long winQPidToPid(const Q_PID qpid);
63
64 QTCREATOR_UTILS_EXPORT bool winIs64BitSystem();
65
66 // Check for a 64bit binary.
67 QTCREATOR_UTILS_EXPORT bool winIs64BitBinary(const QString &binary);
68
69
70
71 } // namespace Utils
72 #endif // WINUTILS_H