Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mpc-hc/Translations.h')
-rw-r--r--src/mpc-hc/Translations.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/mpc-hc/Translations.h b/src/mpc-hc/Translations.h
index 31da57eaf..19d21e438 100644
--- a/src/mpc-hc/Translations.h
+++ b/src/mpc-hc/Translations.h
@@ -1,5 +1,5 @@
/*
-* (C) 2014 see Authors.txt
+* (C) 2014-2016 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -20,22 +20,11 @@
#pragma once
-#include <Windows.h>
#include <list>
namespace Translations
{
struct LanguageResource {
- LanguageResource()
- : LanguageResource(WORD_ERROR, nullptr, nullptr)
- {};
-
- LanguageResource(LANGID localeID, LPCTSTR name, LPCTSTR dllPath)
- : localeID(localeID)
- , name(name)
- , dllPath(dllPath)
- {};
-
LANGID localeID; // Check http://msdn.microsoft.com/en-us/goglobal/bb964664
LPCTSTR name;
LPCTSTR dllPath;
@@ -46,5 +35,5 @@ namespace Translations
std::list<LanguageResource> GetAvailableLanguageResources();
LANGID SetDefaultLanguage();
- bool SetLanguage(LanguageResource languageResource, bool showErrorMsg = true);
+ bool SetLanguage(LANGID localeID, bool showErrorMsg = true);
};