aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/shared/peutils.h
blob: b4f6f05a0986a59e26e3d59993769f35f684b4f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QStringList>

/* Helper functions to extract information from PE Win32 executable
 * files (cf dumpbin utility). */
namespace Debugger {
namespace Internal {

// Return a list of Program-Database (*.pdb) files a PE executable refers to. */
bool getPDBFiles(const QString &peExecutableFileName, QStringList *rc, QString *errorMessage);

} // namespace Internal
} // namespace Debugger