aboutsummaryrefslogtreecommitdiff
path: root/libs/basic_games_native/src/steamutils.h
blob: 5ef11b3832d7ff2eb96976db39af848e88579191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef STEAMUTILS_H
#define STEAMUTILS_H

#include <QHash>
#include <QString>

// Scans all Steam library folders and returns a map of
// Steam App ID -> installation path
QHash<int, QString> findSteamGames();

// Find the installation path for a specific Steam app ID
QString findSteamGamePath(int appId);

#endif  // STEAMUTILS_H