~ubuntu-branches/ubuntu/karmic/qtcreator/karmic-security

« back to all changes in this revision

Viewing changes to src/plugins/debugger/win/peutils.h

  • Committer: Bazaar Package Importer
  • Author(s): Andres Rodriguez
  • Date: 2009-07-19 16:23:52 UTC
  • mfrom: (3.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090719162352-oni0h8hrrkdd3sil
Tags: 1.2.1-1ubuntu1
* Merge from debian unstable (LP: #399414), remaining changes:
  - Add qt-creator transitional package.
* debian/control: Conflicts on qt-creator (<< 1.2.1-1ubuntu1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**************************************************************************
2
 
**
3
 
** This file is part of Qt Creator
4
 
**
5
 
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
6
 
**
7
 
** Contact:  Qt Software Information (qt-info@nokia.com)
8
 
**
9
 
** Commercial Usage
10
 
**
11
 
** Licensees holding valid Qt Commercial licenses may use this file in
12
 
** accordance with the Qt Commercial License Agreement provided with the
13
 
** Software or, alternatively, in accordance with the terms contained in
14
 
** a written agreement between you and Nokia.
15
 
**
16
 
** GNU Lesser General Public License Usage
17
 
**
18
 
** Alternatively, this file may be used under the terms of the GNU Lesser
19
 
** General Public License version 2.1 as published by the Free Software
20
 
** Foundation and appearing in the file LICENSE.LGPL included in the
21
 
** packaging of this file.  Please review the following information to
22
 
** ensure the GNU Lesser General Public License version 2.1 requirements
23
 
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24
 
**
25
 
** If you are unsure which license is appropriate for your use, please
26
 
** contact the sales department at qt-sales@nokia.com.
27
 
**
28
 
**************************************************************************/
29
 
 
30
 
#ifndef PEUTILS_H
31
 
#define PEUTILS_H
32
 
 
33
 
#include <QtCore/qnamespace.h>
34
 
 
35
 
QT_BEGIN_NAMESPACE
36
 
class QStringList;
37
 
class QString;
38
 
QT_END_NAMESPACE
39
 
 
40
 
/* Helper functions to extract information from PE Win32 executable
41
 
 * files (cf dumpbin utility). */
42
 
namespace Debugger {
43
 
namespace Internal {
44
 
 
45
 
// Return a list of Program-Database (*.pdb) files a PE executable refers to. */
46
 
bool getPDBFiles(const QString &peExecutableFileName, QStringList *rc, QString *errorMessage);
47
 
 
48
 
}
49
 
}
50
 
 
51
 
#endif // PEUTILS_H