summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/fallout3info.h1
-rw-r--r--src/shared/falloutnvinfo.h1
-rw-r--r--src/shared/gameinfo.h1
-rw-r--r--src/shared/oblivioninfo.h1
-rw-r--r--src/shared/skyriminfo.h1
5 files changed, 5 insertions, 0 deletions
diff --git a/src/shared/fallout3info.h b/src/shared/fallout3info.h
index 0a2b0ebe..698dcb25 100644
--- a/src/shared/fallout3info.h
+++ b/src/shared/fallout3info.h
@@ -37,6 +37,7 @@ public:
static std::wstring getRegPathStatic();
virtual std::wstring getRegPath() const { return getRegPathStatic(); }
virtual std::wstring getBinaryName() const { return L"Fallout3.exe"; }
+ virtual std::wstring getExtenderName() { return L"fose_loader.exe"; }
virtual GameInfo::Type getType() const { return TYPE_FALLOUT3; }
diff --git a/src/shared/falloutnvinfo.h b/src/shared/falloutnvinfo.h
index d03add9c..67a72ec5 100644
--- a/src/shared/falloutnvinfo.h
+++ b/src/shared/falloutnvinfo.h
@@ -38,6 +38,7 @@ public:
static std::wstring getRegPathStatic();
virtual std::wstring getRegPath() const { return getRegPathStatic(); }
virtual std::wstring getBinaryName() const { return L"FalloutNV.exe"; }
+ virtual std::wstring getExtenderName() { return L"nvse_loader.exe"; }
virtual GameInfo::Type getType() const { return TYPE_FALLOUTNV; }
diff --git a/src/shared/gameinfo.h b/src/shared/gameinfo.h
index 8caa5937..55cd024a 100644
--- a/src/shared/gameinfo.h
+++ b/src/shared/gameinfo.h
@@ -60,6 +60,7 @@ public:
virtual std::wstring getRegPath() const = 0;
virtual std::wstring getBinaryName() const = 0;
+ virtual std::wstring getExtenderName() const = 0;
virtual GameInfo::Type getType() const = 0;
diff --git a/src/shared/oblivioninfo.h b/src/shared/oblivioninfo.h
index 1adf9cab..c05aac30 100644
--- a/src/shared/oblivioninfo.h
+++ b/src/shared/oblivioninfo.h
@@ -36,6 +36,7 @@ public:
static std::wstring getRegPathStatic();
virtual std::wstring getRegPath() const { return getRegPathStatic(); }
virtual std::wstring getBinaryName() const { return L"Oblivion.exe"; }
+ virtual std::wstring getExtenderName() { return L"obse_loader.exe"; }
virtual GameInfo::Type getType() const { return TYPE_OBLIVION; }
diff --git a/src/shared/skyriminfo.h b/src/shared/skyriminfo.h
index e2766688..f4dfb2c2 100644
--- a/src/shared/skyriminfo.h
+++ b/src/shared/skyriminfo.h
@@ -38,6 +38,7 @@ public:
static std::wstring getRegPathStatic();
virtual std::wstring getRegPath() const { return getRegPathStatic(); }
virtual std::wstring getBinaryName() const { return L"TESV.exe"; }
+ virtual std::wstring getExtenderName() { return L"skse_loader.exe"; }
virtual GameInfo::Type getType() const { return TYPE_SKYRIM; }