diff --git a/AddFriend.cpp b/AddFriend.cpp index f75b87ec..505dd22d 100644 --- a/AddFriend.cpp +++ b/AddFriend.cpp @@ -38,10 +38,8 @@ BEGIN_MESSAGE_MAP(CAddFriend, CDialog) END_MESSAGE_MAP() CAddFriend::CAddFriend() - : CDialog(CAddFriend::IDD) + : CDialog(CAddFriend::IDD), m_pShowFriend(), m_icnWnd() { - m_pShowFriend = NULL; - m_icnWnd = NULL; } CAddFriend::~CAddFriend() diff --git a/AddSourceDlg.cpp b/AddSourceDlg.cpp index 83fa61d1..6f1c75bc 100644 --- a/AddSourceDlg.cpp +++ b/AddSourceDlg.cpp @@ -41,9 +41,8 @@ BEGIN_MESSAGE_MAP(CAddSourceDlg, CResizableDialog) ON_BN_CLICKED(IDOK, OnBnClickedOk) END_MESSAGE_MAP() -CAddSourceDlg::CAddSourceDlg(CWnd* pParent /*=NULL*/) - : CResizableDialog(CAddSourceDlg::IDD, pParent) - , m_pFile(NULL), m_nSourceType(0) +CAddSourceDlg::CAddSourceDlg(CWnd *pParent /*= NULL*/) + : CResizableDialog(CAddSourceDlg::IDD, pParent), m_pFile(), m_nSourceType() { } @@ -51,7 +50,7 @@ CAddSourceDlg::~CAddSourceDlg() { } -void CAddSourceDlg::DoDataExchange(CDataExchange* pDX) +void CAddSourceDlg::DoDataExchange(CDataExchange *pDX) { CResizableDialog::DoDataExchange(pDX); DDX_Radio(pDX, IDC_RSRC, m_nSourceType); diff --git a/AddSourceDlg.h b/AddSourceDlg.h index 44ccdc64..29905ec7 100644 --- a/AddSourceDlg.h +++ b/AddSourceDlg.h @@ -27,8 +27,8 @@ struct SUnresolvedHostname nPort = 0; } CStringA strHostname; - uint16 nPort; CString strURL; + uint16 nPort; }; // CAddSourceDlg dialog @@ -40,13 +40,13 @@ class CAddSourceDlg : public CResizableDialog enum { IDD = IDD_ADDSOURCE }; public: - explicit CAddSourceDlg(CWnd* pParent = NULL); // standard constructor + explicit CAddSourceDlg(CWnd *pParent = NULL); // standard constructor virtual ~CAddSourceDlg(); - void SetFile( CPartFile* pFile ); + void SetFile(CPartFile *pFile); protected: - CPartFile* m_pFile; + CPartFile *m_pFile; int m_nSourceType; virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support diff --git a/ArchiveRecovery.cpp b/ArchiveRecovery.cpp index d802d396..e232e623 100644 --- a/ArchiveRecovery.cpp +++ b/ArchiveRecovery.cpp @@ -514,7 +514,7 @@ bool CArchiveRecovery::processZipEntry(CFile *zipInput, CFile *zipOutput, uint32 entry.filename = new BYTE[entry.lenFilename]; if (zipInput->Read(entry.filename, entry.lenFilename) != entry.lenFilename) { - delete [] entry.filename; + delete[] entry.filename; return false; } @@ -595,9 +595,9 @@ bool CArchiveRecovery::processZipEntry(CFile *zipInput, CFile *zipOutput, uint32 } else { - delete [] entry.filename; + delete[] entry.filename; if (entry.lenExtraField > 0) - delete [] entry.extraField; + delete[] entry.extraField; } retVal = true; @@ -795,7 +795,7 @@ bool CArchiveRecovery::recoverRar(CFile *rarInput, CFile *rarOutput, archiveScan rarInput->Seek(block->offsetData + block->dataLength, CFile::begin); } if (aitp==NULL) { - delete [] block->FILE_NAME; + delete[] block->FILE_NAME; delete block; } if (rarInput->GetPosition() >=fill->end) diff --git a/ArchiveRecovery.h b/ArchiveRecovery.h index eeda5e73..17dd7205 100644 --- a/ArchiveRecovery.h +++ b/ArchiveRecovery.h @@ -171,7 +171,7 @@ struct ACE_BlockFile uint64 data_offset; ACE_BlockFile() - : FNAME_SIZE(0), COMM_SIZE(0), FNAME(NULL), COMMENT(NULL) + : FNAME_SIZE(), COMM_SIZE(), FNAME(), COMMENT() { } ~ACE_BlockFile() diff --git a/ChatSelector.cpp b/ChatSelector.cpp index 623137ef..41b3a5fd 100644 --- a/ChatSelector.cpp +++ b/ChatSelector.cpp @@ -72,7 +72,7 @@ BEGIN_MESSAGE_MAP(CChatSelector, CClosableTabCtrl) END_MESSAGE_MAP() CChatSelector::CChatSelector() - : m_pParent(NULL), m_iContextIndex(-1) + : m_pParent(), m_iContextIndex(-1) { m_lastemptyicon = false; m_blinkstate = false; diff --git a/Collection.cpp b/Collection.cpp index 9108b070..62d3c541 100644 --- a/Collection.cpp +++ b/Collection.cpp @@ -48,8 +48,8 @@ CCollection::CCollection() } CCollection::CCollection(const CCollection *pCollection) + : m_sCollectionName(pCollection->m_sCollectionName) { - m_sCollectionName = pCollection->m_sCollectionName; if (pCollection->m_pabyCollectionAuthorKey != NULL) { m_nKeySize = pCollection->m_nKeySize; m_pabyCollectionAuthorKey = new BYTE[m_nKeySize]; diff --git a/ColourPopup.cpp b/ColourPopup.cpp index 8def5988..204d39fa 100644 --- a/ColourPopup.cpp +++ b/ColourPopup.cpp @@ -100,7 +100,7 @@ const ColourTableEntry CColourPopup::m_crColours[] = // CColourPopup CColourPopup::CColourPopup() - : colourArrayPassed(NULL) + : colourArrayPassed() { Initialise(); } diff --git a/CreditsThread.cpp b/CreditsThread.cpp index 24e97726..870d286f 100644 --- a/CreditsThread.cpp +++ b/CreditsThread.cpp @@ -42,17 +42,18 @@ BEGIN_MESSAGE_MAP(CCreditsThread, CGDIThread) //}}AFX_MSG_MAP END_MESSAGE_MAP() -CCreditsThread::CCreditsThread(CWnd* pWnd, HDC hDC, CRect rectScreen) - : CGDIThread(pWnd, hDC), m_rectScreen(rectScreen) +CCreditsThread::CCreditsThread(CWnd *pWnd, HDC hDC, CRect rectScreen) + : CGDIThread(pWnd, hDC) + , m_rectScreen(rectScreen) + , m_nScrollPos() + , m_pbmpOldBk() + , m_pbmpOldCredits() + , m_pbmpOldScreen() + , m_pbmpOldMask() + , m_nCreditsBmpWidth() + , m_nCreditsBmpHeight() { m_rgnScreen.CreateRectRgnIndirect(m_rectScreen); - m_nScrollPos = 0; - m_pbmpOldBk = NULL; - m_pbmpOldCredits = NULL; - m_pbmpOldScreen = NULL; - m_pbmpOldMask = NULL; - m_nCreditsBmpWidth = 0; - m_nCreditsBmpHeight = 0; } CCreditsThread::~CCreditsThread() @@ -431,7 +432,7 @@ void CCreditsThread::InitText() m_arCredits.Add(_T("03:00:eMule")); m_arCredits.Add(_T("02:01:Version ") + theApp.m_strCurVersionLong); - m_arCredits.Add(_T("01:06:Copyright (C) 2002-2015 Merkur")); + m_arCredits.Add(_T("01:06:Copyright (C) 2002-2018 Merkur")); m_arCredits.Add(_T("S:50")); m_arCredits.Add(_T("02:04:Developers")); m_arCredits.Add(_T("S:5")); diff --git a/DownloadClient.cpp b/DownloadClient.cpp index 8fd693f5..3feb7509 100644 --- a/DownloadClient.cpp +++ b/DownloadClient.cpp @@ -1273,7 +1273,7 @@ void CUpDownClient::ProcessBlockPacket(const uchar *packet, uint32 size, bool pa cur_block->fZStreamError = 1; cur_block->totalUnzipped = 0; } - delete [] unzipped; + delete[] unzipped; } // These checks only need to be done if any data was written diff --git a/DownloadQueue.cpp b/DownloadQueue.cpp index e99f80fe..965bc1cd 100644 --- a/DownloadQueue.cpp +++ b/DownloadQueue.cpp @@ -831,7 +831,7 @@ bool CDownloadQueue::SendNextUDPPacket() else { POSITION pos = filelist.Find(lastfile); - if (pos == 0) // the last file is no longer in the DL-list (may have been finished or canceld) + if (pos == 0) // the last file is no longer in the DL-list (may have been finished or cancelled) { // get first file to search sources for nextfile = filelist.GetHead(); diff --git a/EMSocket.cpp b/EMSocket.cpp index ce94cc2f..d84b469e 100644 --- a/EMSocket.cpp +++ b/EMSocket.cpp @@ -86,7 +86,7 @@ namespace IMPLEMENT_DYNAMIC(CEMSocket, CEncryptedStreamSocket) CEMSocket::CEMSocket() - : pendingHeader(), m_OverlappedCleaning(0), lastFinishedStandard(0) + : pendingHeader(), m_OverlappedCleaning(), lastFinishedStandard() { byConnected = ES_NOTCONNECTED; m_uTimeOut = CONNECTION_TIMEOUT; // default timeout for ed2k sockets diff --git a/EnBitmap.cpp b/EnBitmap.cpp index 5782895d..91bf23e0 100644 --- a/EnBitmap.cpp +++ b/EnBitmap.cpp @@ -75,7 +75,7 @@ BOOL CEnBitmap::LoadImage(LPCTSTR lpszResourceName, LPCTSTR szResourceType, HMOD } } - delete [] pBuff; + delete[] pBuff; } } @@ -122,7 +122,7 @@ BOOL CEnBitmap::LoadImage(LPCTSTR szImagePath, COLORREF crBack) pPicture->Release(); } } - delete [] pBuff; + delete[] pBuff; } return bResult; diff --git a/FileIdentifier.cpp b/FileIdentifier.cpp index 84f6078d..17e703a1 100644 --- a/FileIdentifier.cpp +++ b/FileIdentifier.cpp @@ -32,7 +32,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////// // CFileIdentifierBase CFileIdentifierBase::CFileIdentifierBase() - : m_abyMD4Hash(), m_bHasValidAICHHash(false) + : m_abyMD4Hash(), m_bHasValidAICHHash() { } diff --git a/Friend.cpp b/Friend.cpp index c60c4106..e5bfe3ae 100644 --- a/Friend.cpp +++ b/Friend.cpp @@ -43,7 +43,7 @@ void CFriend::init() } CFriend::CFriend() - : m_abyUserhash(), m_dwLastSeen(0), m_dwLastUsedIP(0), m_nLastUsedPort(0), m_dwLastChatted(0), m_strName() + : m_abyUserhash(), m_dwLastSeen(), m_dwLastUsedIP(), m_nLastUsedPort(), m_dwLastChatted(), m_strName() { init(); } diff --git a/FriendList.cpp b/FriendList.cpp index d02878db..e5de253c 100644 --- a/FriendList.cpp +++ b/FriendList.cpp @@ -38,7 +38,7 @@ static char THIS_FILE[] = __FILE__; #define EMFRIENDS_MET_FILENAME _T("emfriends.met") CFriendList::CFriendList() - : m_wndOutput(NULL) + : m_wndOutput() { LoadList(); m_nLastSaved = ::GetTickCount(); diff --git a/HttpDownloadDlg.h b/HttpDownloadDlg.h index 7bff49e2..52a34191 100644 --- a/HttpDownloadDlg.h +++ b/HttpDownloadDlg.h @@ -90,6 +90,6 @@ class CHttpDownloadDlg : public CDialog volatile BOOL m_bAbort; BOOL m_bSafeToClose; CFile m_FileToWrite; - CWinThread* m_pThread; + CWinThread *m_pThread; static ULONGLONG sm_ullWinInetVer; }; \ No newline at end of file diff --git a/IPFilter.cpp b/IPFilter.cpp index b8e27772..ff27a681 100644 --- a/IPFilter.cpp +++ b/IPFilter.cpp @@ -230,8 +230,7 @@ INT_PTR CIPFilter::AddFromFile(LPCTSTR pszFilePath, bool bShowResponse) // Reserve a byte array (its used as a boolean array actually) as large as the current // IP-filter list, so we can set a 'to delete' flag for each entry in the current IP-filter list. - char* pcToDelete = new char[m_iplist.GetCount()]; - memset(pcToDelete, 0, m_iplist.GetCount()); + char *pcToDelete = new char[m_iplist.GetCount()](); int iNumToDelete = 0; SIPFilter* pPrv = m_iplist[0]; diff --git a/KnownFile.cpp b/KnownFile.cpp index 96c2fc66..4f24ba41 100644 --- a/KnownFile.cpp +++ b/KnownFile.cpp @@ -358,31 +358,26 @@ void Dump(const Kademlia::WordList& wordlist) void CKnownFile::SetFileName(LPCTSTR pszFileName, bool bReplaceInvalidFileSystemChars, bool bRemoveControlChars) { - CKnownFile* pFile = NULL; - // If this is called within the sharedfiles object during startup, // we cannot reference it yet.. - if(theApp.sharedfiles) - pFile = theApp.sharedfiles->GetFileByID(GetFileHash()); + CKnownFile *pFile = theApp.sharedfiles ? theApp.sharedfiles->GetFileByID(GetFileHash()) : NULL; - if (pFile && pFile == this) + if (pFile == this) theApp.sharedfiles->RemoveKeywords(this); CAbstractFile::SetFileName(pszFileName, bReplaceInvalidFileSystemChars, true, bRemoveControlChars); m_verifiedFileType = FILETYPE_UNKNOWN; wordlist.clear(); - if(m_pCollection) - { + if (m_pCollection) { CStringW sKeyWords; - sKeyWords.Format(_T("%s %s"), (LPCTSTR)m_pCollection->GetCollectionAuthorKeyString(), (LPCTSTR)(CString)GetFileName()); //cast to CStringT + sKeyWords.Format(_T("%s %s"), (LPCTSTR)m_pCollection->GetCollectionAuthorKeyString(), (LPCTSTR)GetFileName()); Kademlia::CSearchManager::GetWords(sKeyWords, &wordlist); - } - else - Kademlia::CSearchManager::GetWords((CStringW)GetFileName(), &wordlist); //make sure it is CStringW + } else + Kademlia::CSearchManager::GetWords((CStringW)GetFileName(), &wordlist); //make sure that it is a CStringW - if (pFile && pFile == this) + if (pFile == this) theApp.sharedfiles->AddKeywords(this); } diff --git a/Log.h b/Log.h index 49ef717e..14622a45 100644 --- a/Log.h +++ b/Log.h @@ -77,12 +77,12 @@ class CLogFile void StartNewLogFile(); protected: - FILE* m_fp; - time_t m_tStarted; - CString m_strFilePath; - size_t m_uBytesWritten; - size_t m_uMaxFileSize; - bool m_bInOpenCall; + FILE *m_fp; + time_t m_tStarted; + CString m_strFilePath; + size_t m_uBytesWritten; + size_t m_uMaxFileSize; + bool m_bInOpenCall; ELogFileFormat m_eFileFormat; }; diff --git a/MediaInfo.cpp b/MediaInfo.cpp index c41510e7..1b9b28e1 100644 --- a/MediaInfo.cpp +++ b/MediaInfo.cpp @@ -515,7 +515,8 @@ static BOOL ParseStreamHeader(int hAviFile, DWORD dwLengthLeft, STREAMHEADER* pS if (dwLength > 4096) // expect corrupt data return FALSE; try { - pStrmHdr->fmt.dat = new BYTE[pStrmHdr->dwFormatLen = dwLength]; + pStrmHdr->dwFormatLen = dwLength; + pStrmHdr->fmt.dat = new BYTE[dwLength]; } catch (...) { errno = ENOMEM; return FALSE; diff --git a/NetworkInfoDlg.cpp b/NetworkInfoDlg.cpp index b23cb335..c82e82f1 100644 --- a/NetworkInfoDlg.cpp +++ b/NetworkInfoDlg.cpp @@ -363,16 +363,17 @@ void CreateNetworkInfo(CRichEditCtrlX& rCtrl, CHARFORMAT& rcfDef, CHARFORMAT& rc rCtrl << GetResString(IDS_WEBSRV) << _T("\r\n"); rCtrl.SetSelectionCharFormat(rcfDef); rCtrl << GetResString(IDS_STATUS) << _T(":\t"); - rCtrl << (thePrefs.GetWSIsEnabled() ? GetResString(IDS_ENABLED) : GetResString(IDS_DISABLED)) << _T("\r\n"); + rCtrl << GetResString(thePrefs.GetWSIsEnabled() ? IDS_ENABLED : IDS_DISABLED) << _T("\r\n"); if (thePrefs.GetWSIsEnabled()){ CString count; count.Format(_T("%d %s"), static_cast(theApp.webserver->GetSessionCount()), (LPCTSTR)GetResString(IDS_ACTSESSIONS)); rCtrl << _T("\t") << count << _T("\r\n"); CString strHostname; - if (!thePrefs.GetYourHostname().IsEmpty() && thePrefs.GetYourHostname().Find(_T('.')) != -1) - strHostname = thePrefs.GetYourHostname(); - else + if (thePrefs.GetYourHostname().IsEmpty() || thePrefs.GetYourHostname().Find(_T('.')) < 0) strHostname = ipstr(theApp.serverconnect->GetLocalIP()); - rCtrl << _T("URL:\t") << _T("http://") << strHostname << _T(":") << thePrefs.GetWSPort() << _T("/\r\n"); + else + strHostname = thePrefs.GetYourHostname(); + rCtrl << _T("URL:\t") << (thePrefs.GetWebUseHttps() ? _T("https://") : _T("http://")); + rCtrl << strHostname << _T(":") << thePrefs.GetWSPort() << _T("/\r\n"); } -} +} \ No newline at end of file diff --git a/OScopeCtrl.cpp b/OScopeCtrl.cpp index 3455c723..2fe4fae8 100644 --- a/OScopeCtrl.cpp +++ b/OScopeCtrl.cpp @@ -47,7 +47,7 @@ BEGIN_MESSAGE_MAP(COScopeCtrl, CWnd) END_MESSAGE_MAP() COScopeCtrl::COScopeCtrl(int NTrends) - : m_nClientHeight(0), m_nClientWidth(0), m_nPlotHeight(0), m_nPlotWidth(0) + : m_nClientHeight(), m_nClientWidth(), m_nPlotHeight(), m_nPlotWidth() { static const COLORREF PresetColor[16] = { diff --git a/PPgFiles.cpp b/PPgFiles.cpp index ecc8ebcb..8cec0605 100644 --- a/PPgFiles.cpp +++ b/PPgFiles.cpp @@ -58,9 +58,8 @@ BEGIN_MESSAGE_MAP(CPPgFiles, CPropertyPage) END_MESSAGE_MAP() CPPgFiles::CPPgFiles() - : CPropertyPage(CPPgFiles::IDD) + : CPropertyPage(CPPgFiles::IDD), m_icoBrowse() { - m_icoBrowse = NULL; } CPPgFiles::~CPPgFiles() diff --git a/PPgGeneral.cpp b/PPgGeneral.cpp index 0d7fff01..17074d87 100644 --- a/PPgGeneral.cpp +++ b/PPgGeneral.cpp @@ -117,42 +117,43 @@ BOOL CPPgGeneral::OnInitDialog() thePrefs.GetLanguages(aLanguageIDs); for (int i = 0; i < aLanguageIDs.GetSize(); i++) { TCHAR szLang[128]; + TCHAR *pLang = szLang; int ret = GetLocaleInfo(aLanguageIDs[i], LOCALE_SLANGUAGE, szLang, ARRSIZE(szLang)); if (ret == 0) switch (aLanguageIDs[i]) { case LANGID_UG_CN: - _tcscpy(szLang, _T("Uyghur")); + pLang = _T("Uyghur"); break; case LANGID_GL_ES: - _tcscpy(szLang, _T("Galician")); + pLang = _T("Galician"); break; case LANGID_FR_BR: - _tcscpy(szLang, _T("Breton (Brezhoneg)")); + pLang = _T("Breton (Brezhoneg)"); break; case LANGID_MT_MT: - _tcscpy(szLang, _T("Maltese")); + pLang = _T("Maltese"); break; case LANGID_ES_AS: - _tcscpy(szLang, _T("Asturian")); + pLang = _T("Asturian"); break; case LANGID_VA_ES: - _tcscpy(szLang, _T("Valencian")); + pLang = _T("Valencian"); break; case LANGID_VA_ES_RACV: - _tcscpy(szLang, _T("Valencian (RACV)")); + pLang = _T("Valencian (RACV)"); break; default: ASSERT(0); - _tcscpy(szLang, _T("?(unknown language)?")); + pLang = _T("?(unknown language)?"); } - m_language.SetItemData(m_language.AddString(szLang), aLanguageIDs[i]); + m_language.SetItemData(m_language.AddString(pLang), aLanguageIDs[i]); } UpdateEd2kLinkFixCtrl(); - CSliderCtrl *sliderUpdate = (CSliderCtrl*)GetDlgItem(IDC_CHECKDAYS); + CSliderCtrl *sliderUpdate = static_cast(GetDlgItem(IDC_CHECKDAYS)); sliderUpdate->SetRange(2, 7, true); sliderUpdate->SetPos(thePrefs.GetUpdateDays()); @@ -167,7 +168,7 @@ BOOL CPPgGeneral::OnInitDialog() void ModifyAllWindowStyles(CWnd* pWnd, DWORD dwRemove, DWORD dwAdd) { - CWnd* pWndChild = pWnd->GetWindow(GW_CHILD); + CWnd *pWndChild = pWnd->GetWindow(GW_CHILD); while (pWndChild) { ModifyAllWindowStyles(pWndChild, dwRemove, dwAdd); pWndChild = pWndChild->GetNextWindow(); @@ -304,7 +305,7 @@ void CPPgGeneral::OnBnClickedEditWebservices() void CPPgGeneral::OnLangChange() { -#define MIRRORS_URL _T("http://langmirror%u.emule-project.org/lang/%u%u%u%u/") +#define MIRRORS_URL _T("http://langmirror%u.emule-project.org/lang/fox/%u%u%u%u/32/") LANGID newLangId = (LANGID)m_language.GetItemData(m_language.GetCurSel()); if (thePrefs.GetLanguageID() != newLangId) { @@ -316,7 +317,7 @@ void CPPgGeneral::OnLangChange() CString strUrl; strUrl.Format(MIRRORS_URL, nRand, CemuleApp::m_nVersionMjr, CemuleApp::m_nVersionMin, CemuleApp::m_nVersionUpd, CemuleApp::m_nVersionBld); strUrl += thePrefs.GetLangDLLNameByID(newLangId); - // safeto + // save to CString strFilename = thePrefs.GetMuleDirectory(EMULE_ADDLANGDIR, true); strFilename += thePrefs.GetLangDLLNameByID(newLangId); // start diff --git a/PPgNotify.cpp b/PPgNotify.cpp index 2e817a12..f483c56a 100644 --- a/PPgNotify.cpp +++ b/PPgNotify.cpp @@ -58,10 +58,8 @@ BEGIN_MESSAGE_MAP(CPPgNotify, CPropertyPage) END_MESSAGE_MAP() CPPgNotify::CPPgNotify() - : CPropertyPage(CPPgNotify::IDD) + : CPropertyPage(CPPgNotify::IDD), m_bEnableEMail(true), m_icoBrowse() { - m_bEnableEMail = true; - m_icoBrowse = NULL; } CPPgNotify::~CPPgNotify() diff --git a/PPgTweaks.h b/PPgTweaks.h index f54a4337..b5d2ee19 100644 --- a/PPgTweaks.h +++ b/PPgTweaks.h @@ -27,7 +27,7 @@ class CPPgTweaks : public CPropertyPage bool m_bLogSecureIdent; bool m_bLogFilteredIPs; bool m_bLogFileSaving; - bool m_bLogA4AF; + bool m_bLogA4AF; bool m_bLogUlDlEvents; bool m_bCreditSystem; bool m_bLog2Disk; @@ -43,15 +43,15 @@ class CPPgTweaks : public CPropertyPage CString m_sYourHostname; bool m_bFirewallStartup; int m_iLogLevel; - bool m_bDynUpEnabled; - int m_iDynUpMinUpload; - int m_iDynUpPingTolerance; - int m_iDynUpPingToleranceMilliseconds; - int m_iDynUpRadioPingTolerance; - int m_iDynUpGoingUpDivider; - int m_iDynUpGoingDownDivider; - int m_iDynUpNumberOfPings; - bool m_bA4AFSaveCpu; + bool m_bDynUpEnabled; + int m_iDynUpMinUpload; + int m_iDynUpPingTolerance; + int m_iDynUpPingToleranceMilliseconds; + int m_iDynUpRadioPingTolerance; + int m_iDynUpGoingUpDivider; + int m_iDynUpGoingDownDivider; + int m_iDynUpNumberOfPings; + bool m_bA4AFSaveCpu; bool m_bAutoArchDisable; int m_iExtractMetaData; bool m_bCloseUPnPOnExit; @@ -64,7 +64,7 @@ class CPPgTweaks : public CPropertyPage CSliderCtrl m_ctlFileBuffSize; CSliderCtrl m_ctlQueueSize; - CTreeOptionsCtrlEx m_ctrlTreeOptions; + CTreeOptionsCtrlEx m_ctrlTreeOptions; bool m_bInitializedTreeOpts; HTREEITEM m_htiTCPGroup; HTREEITEM m_htiMaxCon5Sec; @@ -79,7 +79,7 @@ class CPPgTweaks : public CPropertyPage HTREEITEM m_htiLogSecureIdent; HTREEITEM m_htiLogFilteredIPs; HTREEITEM m_htiLogFileSaving; - HTREEITEM m_htiLogA4AF; + HTREEITEM m_htiLogA4AF; HTREEITEM m_htiLogUlDlEvents; HTREEITEM m_htiCreditSystem; HTREEITEM m_htiLog2Disk; @@ -98,18 +98,18 @@ class CPPgTweaks : public CPropertyPage HTREEITEM m_htiYourHostname; HTREEITEM m_htiFirewallStartup; HTREEITEM m_htiLogLevel; - HTREEITEM m_htiDynUp; + HTREEITEM m_htiDynUp; HTREEITEM m_htiDynUpEnabled; - HTREEITEM m_htiDynUpMinUpload; - HTREEITEM m_htiDynUpPingTolerance; - HTREEITEM m_htiDynUpPingToleranceMilliseconds; - HTREEITEM m_htiDynUpPingToleranceGroup; - HTREEITEM m_htiDynUpRadioPingTolerance; - HTREEITEM m_htiDynUpRadioPingToleranceMilliseconds; - HTREEITEM m_htiDynUpGoingUpDivider; - HTREEITEM m_htiDynUpGoingDownDivider; - HTREEITEM m_htiDynUpNumberOfPings; - HTREEITEM m_htiA4AFSaveCpu; + HTREEITEM m_htiDynUpMinUpload; + HTREEITEM m_htiDynUpPingTolerance; + HTREEITEM m_htiDynUpPingToleranceMilliseconds; + HTREEITEM m_htiDynUpPingToleranceGroup; + HTREEITEM m_htiDynUpRadioPingTolerance; + HTREEITEM m_htiDynUpRadioPingToleranceMilliseconds; + HTREEITEM m_htiDynUpGoingUpDivider; + HTREEITEM m_htiDynUpGoingDownDivider; + HTREEITEM m_htiDynUpNumberOfPings; + HTREEITEM m_htiA4AFSaveCpu; HTREEITEM m_htiExtractMetaData; HTREEITEM m_htiExtractMetaDataNever; HTREEITEM m_htiExtractMetaDataID3Lib; @@ -132,10 +132,10 @@ class CPPgTweaks : public CPropertyPage virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam); DECLARE_MESSAGE_MAP() - afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar); + afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar); afx_msg void OnDestroy(); afx_msg LRESULT OnTreeOptsCtrlNotify(WPARAM wParam, LPARAM lParam); afx_msg void OnHelp(); afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo); afx_msg void OnBnClickedOpenprefini(); -}; +}; \ No newline at end of file diff --git a/PPgWebServer.cpp b/PPgWebServer.cpp index 5049d616..c99b743e 100644 --- a/PPgWebServer.cpp +++ b/PPgWebServer.cpp @@ -61,7 +61,7 @@ BEGIN_MESSAGE_MAP(CPPgWebServer, CPropertyPage) END_MESSAGE_MAP() CPPgWebServer::CPPgWebServer() - : CPropertyPage(CPPgWebServer::IDD), m_bModified(false), bCreated(false), m_icoBrowse(NULL) + : CPropertyPage(CPPgWebServer::IDD), m_bModified(), bCreated(), m_icoBrowse() { } diff --git a/Preferences.cpp b/Preferences.cpp index bbe8749e..b9058c87 100644 --- a/Preferences.cpp +++ b/Preferences.cpp @@ -51,7 +51,7 @@ static char THIS_FILE[] = __FILE__; CPreferences thePrefs; CString CPreferences::m_astrDefaultDirs[13]; -bool CPreferences::m_abDefaultDirsCreated[13] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; +bool CPreferences::m_abDefaultDirsCreated[13] = {}; int CPreferences::m_nCurrentUserDirMode = -1; int CPreferences::m_iDbgHeap; CString CPreferences::strNick; @@ -2690,25 +2690,25 @@ CString CPreferences::GetHomepageBaseURLForLevel(int nLevel) { CString tmp; if (nLevel == 0) - tmp = _T("http://emule-project.net"); + tmp = _T("https://emule-project.net"); else if (nLevel == 1) - tmp = _T("http://www.emule-project.org"); + tmp = _T("https://www.emule-project.org"); else if (nLevel == 2) - tmp = _T("http://www.emule-project.com"); + tmp = _T("https://www.emule-project.com"); else if (nLevel < 100) - tmp.Format(_T("http://www%i.emule-project.net"), nLevel - 2); + tmp.Format(_T("https://www%i.emule-project.net"), nLevel - 2); else if (nLevel < 150) - tmp.Format(_T("http://www%i.emule-project.org"), nLevel); + tmp.Format(_T("https://www%i.emule-project.org"), nLevel); else if (nLevel < 200) - tmp.Format(_T("http://www%i.emule-project.com"), nLevel); + tmp.Format(_T("https://www%i.emule-project.com"), nLevel); else if (nLevel == 200) - tmp = _T("http://emule.sf.net"); + tmp = _T("https://emule.sf.net"); else if (nLevel == 201) - tmp = _T("http://www.emuleproject.net"); + tmp = _T("https://www.emuleproject.net"); else if (nLevel == 202) - tmp = _T("http://sourceforge.net/projects/emule/"); + tmp = _T("https://sourceforge.net/projects/emule/"); else - tmp = _T("http://www.emule-project.net"); + tmp = _T("https://www.emule-project.net"); return tmp; } @@ -2717,24 +2717,24 @@ CString CPreferences::GetVersionCheckBaseURL() CString tmp; UINT nWebMirrorAlertLevel = GetWebMirrorAlertLevel(); if (nWebMirrorAlertLevel < 100) - tmp = _T("http://vcheck.emule-project.net"); + tmp = _T("https://vcheck.emule-project.net"); else if (nWebMirrorAlertLevel < 150) - tmp.Format(_T("http://vcheck%u.emule-project.org"), nWebMirrorAlertLevel); + tmp.Format(_T("https://vcheck%u.emule-project.org"), nWebMirrorAlertLevel); else if (nWebMirrorAlertLevel < 200) - tmp.Format(_T("http://vcheck%u.emule-project.com"), nWebMirrorAlertLevel); + tmp.Format(_T("https://vcheck%u.emule-project.com"), nWebMirrorAlertLevel); else if (nWebMirrorAlertLevel == 200) - tmp = _T("http://emule.sf.net"); + tmp = _T("https://emule.sf.net"); else if (nWebMirrorAlertLevel == 201) - tmp = _T("http://www.emuleproject.net"); + tmp = _T("https://www.emuleproject.net"); else - tmp = _T("http://vcheck.emule-project.net"); + tmp = _T("https://vcheck.emule-project.net"); return tmp; } CString CPreferences::GetVersionCheckURL() { CString theUrl; - theUrl.Format(_T("%s/en/version_check.php?version=%u&language=%u") + theUrl.Format(_T("%s/en/version_check.php?version=%u&language=%u") _T("&mod=1") , (LPCTSTR)thePrefs.GetVersionCheckBaseURL() , theApp.m_uCurVersionCheck , thePrefs.GetLanguageID()); diff --git a/Preview.h b/Preview.h index e0e69bf9..1378918d 100644 --- a/Preview.h +++ b/Preview.h @@ -95,8 +95,8 @@ class CPreviewApps }; CArray m_aApps; time_t m_tDefAppsFileLastModified; - CPartFile* m_pLastCheckedPartFile; - SPreviewApp* m_pLastPartFileApp; + CPartFile *m_pLastCheckedPartFile; + SPreviewApp *m_pLastPartFileApp; void UpdateApps(); @@ -104,4 +104,4 @@ class CPreviewApps extern CPreviewApps thePreviewApps; -void ExecutePartFile(CPartFile* file, LPCTSTR pszCommand, LPCTSTR pszCommandArgs); \ No newline at end of file +void ExecutePartFile(CPartFile *file, LPCTSTR pszCommand, LPCTSTR pszCommandArgs); \ No newline at end of file diff --git a/PreviewDlg.cpp b/PreviewDlg.cpp index 4a9fb2a6..ee6fce0b 100644 --- a/PreviewDlg.cpp +++ b/PreviewDlg.cpp @@ -37,9 +37,8 @@ BEGIN_MESSAGE_MAP(PreviewDlg, CDialog) END_MESSAGE_MAP() PreviewDlg::PreviewDlg(CWnd* pParent /*=NULL*/) - : CDialog(PreviewDlg::IDD, pParent), m_pFile(NULL), m_nCurrentImage(0) + : CDialog(PreviewDlg::IDD, pParent), m_pFile(), m_nCurrentImage(), m_icons() { - memset(m_icons, 0, sizeof m_icons); } PreviewDlg::~PreviewDlg() @@ -82,7 +81,7 @@ void PreviewDlg::ShowImage(int nNumber) int nImageCount = m_pFile->GetPreviews().GetSize(); if (nImageCount <= 0) return; - else if (nImageCount <= nNumber) + if (nImageCount <= nNumber) nNumber = 0; else if (nNumber < 0) nNumber = nImageCount-1; @@ -117,7 +116,8 @@ void PreviewDlg::OnBnClickedPvPrior() ShowImage(m_nCurrentImage-1); } -void PreviewDlg::OnClose(){ +void PreviewDlg::OnClose() +{ HBITMAP hbitmap = m_ImageStatic.SetBitmap(NULL); if (hbitmap) DeleteObject(hbitmap); diff --git a/ProgressCtrlX.cpp b/ProgressCtrlX.cpp index df19cb9b..60d21713 100644 --- a/ProgressCtrlX.cpp +++ b/ProgressCtrlX.cpp @@ -41,7 +41,7 @@ static char THIS_FILE[] = __FILE__; // CProgressCtrlX CProgressCtrlX::CProgressCtrlX() - : m_rcBorders(0,0,0,0) + : m_rcBorders() { // Init colors m_clrBk = ::GetSysColor(COLOR_3DFACE); diff --git a/SHAHashSet.h b/SHAHashSet.h index 2bf66681..69a48ca4 100644 --- a/SHAHashSet.h +++ b/SHAHashSet.h @@ -92,7 +92,10 @@ class CAICHHash { public: ~CAICHHash() {} - CAICHHash() : m_abyBuffer() {} + CAICHHash() + : m_abyBuffer() + { + } explicit CAICHHash(CFileDataIO *file) { Read(file); } explicit CAICHHash(const uchar* data) { Read(data); } CAICHHash(const CAICHHash &k1) { *this = k1; } @@ -190,15 +193,15 @@ class CAICHUntrustedHash { class CAICHRequestedData { public: CAICHRequestedData() - : m_nPart(0), m_pPartFile(NULL), m_pClient(NULL) + : m_nPart(), m_pPartFile(), m_pClient() {} CAICHRequestedData(const CAICHRequestedData &k1) : m_nPart(k1.m_nPart), m_pPartFile(k1.m_pPartFile), m_pClient(k1.m_pClient) {} CAICHRequestedData& operator=(const CAICHRequestedData& k1) { m_nPart = k1.m_nPart; m_pPartFile = k1.m_pPartFile; m_pClient = k1.m_pClient; return *this; } uint16 m_nPart; - CPartFile* m_pPartFile; - CUpDownClient* m_pClient; + CPartFile *m_pPartFile; + CUpDownClient *m_pClient; }; ///////////////////////////////////////////////////////////////////////////////////////// diff --git a/SafeFile.h b/SafeFile.h index 925c99fd..b56f63d1 100644 --- a/SafeFile.h +++ b/SafeFile.h @@ -75,7 +75,9 @@ class CSafeFile : public CFile, public CFileDataIO public: CSafeFile() {} CSafeFile(LPCTSTR lpszFileName, UINT nOpenFlags) - : CFile(lpszFileName, nOpenFlags) {} + : CFile(lpszFileName, nOpenFlags) + { + } virtual UINT Read(void* lpBuf, UINT nCount); virtual void Write(const void* lpBuf, UINT nCount); @@ -92,11 +94,15 @@ class CSafeMemFile : public CMemFile, public CFileDataIO { public: explicit CSafeMemFile(UINT nGrowBytes = 512) - : CMemFile(nGrowBytes) {} + : CMemFile(nGrowBytes) + { + } //CSafeMemFile::CSafeMemFile(BYTE* lpBuffer, UINT nBufferSize, UINT nGrowBytes = 0) // : CMemFile(lpBuffer, nBufferSize, nGrowBytes) {} CSafeMemFile(const BYTE* lpBuffer, UINT nBufferSize) - : CMemFile(const_cast(lpBuffer), nBufferSize, 0) {} + : CMemFile(const_cast(lpBuffer), nBufferSize, 0) + { + } const BYTE* GetBuffer() const { return m_lpBuffer; } @@ -130,7 +136,9 @@ class CSafeBufferedFile : public CStdioFile, public CFileDataIO public: CSafeBufferedFile() {} CSafeBufferedFile(LPCTSTR lpszFileName, UINT nOpenFlags) - : CStdioFile(lpszFileName, nOpenFlags) {} + : CStdioFile(lpszFileName, nOpenFlags) + { + } virtual UINT Read(void* lpBuf, UINT nCount); virtual void Write(const void* lpBuf, UINT nCount); diff --git a/SearchFile.h b/SearchFile.h index 8f6d8eff..d3614223 100644 --- a/SearchFile.h +++ b/SearchFile.h @@ -114,11 +114,11 @@ class CSearchFile : public CAbstractFile struct SServer { SServer() - : m_uAvail(0), m_nIP(0), m_nPort(0), m_bUDPAnswer(false) + : m_uAvail(), m_nIP(), m_nPort(), m_bUDPAnswer() {} SServer(uint32 nIP, uint16 nPort, bool bUDPAnswer) - : m_uAvail(0), m_nIP(nIP), m_nPort(nPort), m_bUDPAnswer(bUDPAnswer) + : m_uAvail(), m_nIP(nIP), m_nPort(nPort), m_bUDPAnswer(bUDPAnswer) {} friend inline bool __stdcall operator==(const CSearchFile::SServer& s1, const CSearchFile::SServer& s2) diff --git a/SearchListCtrl.cpp b/SearchListCtrl.cpp index 55901b69..8263113b 100644 --- a/SearchListCtrl.cpp +++ b/SearchListCtrl.cpp @@ -195,11 +195,10 @@ BEGIN_MESSAGE_MAP(CSearchListCtrl, CMuleListCtrl) END_MESSAGE_MAP() CSearchListCtrl::CSearchListCtrl() - : CListCtrlItemWalk(this), m_crSearchResultDownloading(), m_crSearchResultDownloadStopped() + : CListCtrlItemWalk(this) + , m_nResultsID(), searchlist(), m_crSearchResultDownloading(), m_crSearchResultDownloadStopped() , m_crSearchResultKnown(), m_crSearchResultShareing(), m_crSearchResultCancelled(), m_crShades() { - searchlist = NULL; - m_nResultsID = 0; SetGeneralPurposeFind(true); m_tooltip = new CToolTipCtrlX; m_eFileSizeFormat = (EFileSizeFormat)theApp.GetProfileInt(_T("eMule"), _T("SearchResultsFileSizeFormat"), fsizeDefault); diff --git a/SearchParamsWnd.cpp b/SearchParamsWnd.cpp index 3f1d4653..27e81e87 100644 --- a/SearchParamsWnd.cpp +++ b/SearchParamsWnd.cpp @@ -567,7 +567,7 @@ class SFileTypeCbEntry public: #if _MSC_VER>=1400 SFileTypeCbEntry() - : m_pszItemData(NULL), m_iImage(0) + : m_pszItemData(), m_iImage() {} #endif SFileTypeCbEntry(const CString& strLabel, LPCSTR pszItemData, int iImage) diff --git a/SearchResultsWnd.cpp b/SearchResultsWnd.cpp index fd5f6220..684a8e3c 100644 --- a/SearchResultsWnd.cpp +++ b/SearchResultsWnd.cpp @@ -56,7 +56,6 @@ static char THIS_FILE[] = __FILE__; #endif extern int yyparse(); -extern int yyerror(const char* errstr); extern int yyerror(LPCTSTR errstr); extern LPCTSTR g_aszInvKadKeywordChars; @@ -498,7 +497,7 @@ CString CSearchResultsWnd::CreateWebQuery(SSearchParams *pParams) p = _T("1"); else p = _T("all"); - query.Format(_T("http://contentdb.emule-project.net/search.php?s=%s&cat=%s&rel=1&search_option=simple&network=edonkey&go=Search") + query.Format(_T("https://contentdb.emule-project.net/search.php?s=%s&cat=%s&rel=1&search_option=simple&network=edonkey&go=Search") , (LPCTSTR)EncodeURLQueryParam(pParams->strExpression) , p); } diff --git a/SharedFilesWnd.cpp b/SharedFilesWnd.cpp index 9ab571bc..b1ed11b6 100644 --- a/SharedFilesWnd.cpp +++ b/SharedFilesWnd.cpp @@ -66,10 +66,8 @@ END_MESSAGE_MAP() CSharedFilesWnd::CSharedFilesWnd(CWnd* pParent /*=NULL*/) : CResizableDialog(CSharedFilesWnd::IDD, pParent) + , icon_files(), m_nFilterColumn(), m_bDetailsVisible(true) { - icon_files = NULL; - m_nFilterColumn = 0; - m_bDetailsVisible = true; } CSharedFilesWnd::~CSharedFilesWnd() diff --git a/SplashScreen.cpp b/SplashScreen.cpp index 4172937e..00e9eecf 100644 --- a/SplashScreen.cpp +++ b/SplashScreen.cpp @@ -108,10 +108,14 @@ void CSplashScreen::OnPaint() dc.FillSolidRect(rc.left+1, rc.top+1, rc.Width()-2, rc.Height()-2, RGB(255,255,255)); LOGFONT lf = {}; +#ifdef _BOOTSTRAPNODESDAT + lf.lfHeight = 24; +#else #if defined(_DEBUG) && (defined(_BETA) || defined(_DEVBUILD)) lf.lfHeight = 28; #else lf.lfHeight = 30; +#endif #endif lf.lfWeight = FW_BOLD; lf.lfQuality = afxIsWin95() ? NONANTIALIASED_QUALITY : ANTIALIASED_QUALITY; @@ -133,7 +137,7 @@ void CSplashScreen::OnPaint() _tcscpy(lf.lfFaceName, _T("Arial")); font.CreateFontIndirect(&lf); pOldFont = dc.SelectObject(&font); - dc.DrawText(_T("Copyright (C) 2002-2015 Merkur"), &rc, DT_CENTER | DT_NOPREFIX); + dc.DrawText(_T("Copyright (C) 2002-2018 Merkur"), &rc, DT_CENTER | DT_NOPREFIX); if (pOldFont) dc.SelectObject(pOldFont); font.DeleteObject(); diff --git a/SplitterControl.cpp b/SplitterControl.cpp index 5c40dfb6..346e8a5e 100644 --- a/SplitterControl.cpp +++ b/SplitterControl.cpp @@ -40,15 +40,10 @@ BEGIN_MESSAGE_MAP(CSplitterControl, CStatic) END_MESSAGE_MAP() CSplitterControl::CSplitterControl() - : m_nType(0), m_nX(0), m_nY(0), m_nSavePos(0) + : m_bIsPressed(), m_nType(), m_nX(), m_nY(), m_nSavePos(), m_bDrawBorder() { - // Mouse is pressed down or not ? - m_bIsPressed = FALSE; - // Min and Max range of the splitter. m_nMin = m_nMax = -1; - - m_bDrawBorder = false; } CSplitterControl::~CSplitterControl() diff --git a/SplitterControl.h b/SplitterControl.h index f182503e..2853d8e2 100644 --- a/SplitterControl.h +++ b/SplitterControl.h @@ -49,7 +49,7 @@ class CSplitterControl : public CStatic protected: static HCURSOR m_hcurMoveVert; static HCURSOR m_hcurMoveHorz; - BOOL m_bIsPressed; + BOOL m_bIsPressed; // Mouse is pressed down or not ? int m_nType; int m_nX, m_nY; int m_nMin, m_nMax; diff --git a/StatisticsDlg.cpp b/StatisticsDlg.cpp index 382226af..2bb4380a 100644 --- a/StatisticsDlg.cpp +++ b/StatisticsDlg.cpp @@ -69,10 +69,8 @@ CStatisticsDlg::CStatisticsDlg(CWnd* pParent /*=NULL*/) , m_DownloadOMeter(3) , m_UploadOMeter(5) , m_Statistics(4) -{ - m_oldcx=0; - m_oldcy=0; - m_TimeToolTips = NULL; + , m_oldcx(), m_oldcy(), m_TimeToolTips() +{ } CStatisticsDlg::~CStatisticsDlg() diff --git a/StatisticsTree.cpp b/StatisticsTree.cpp index 262eb3fa..4fc706c6 100644 --- a/StatisticsTree.cpp +++ b/StatisticsTree.cpp @@ -50,14 +50,16 @@ BEGIN_MESSAGE_MAP(CStatisticsTree, CTreeCtrl) END_MESSAGE_MAP() CStatisticsTree::CStatisticsTree() - : m_bExpandingAll(false) + : m_bExpandingAll() { } CStatisticsTree::~CStatisticsTree() { - if (mnuHTML) VERIFY( mnuHTML.DestroyMenu() ); - if (mnuContext) VERIFY( mnuContext.DestroyMenu() ); + if (mnuHTML) + VERIFY(mnuHTML.DestroyMenu()); + if (mnuContext) + VERIFY(mnuContext.DestroyMenu()); } // This function is called from CStatisticsDlg::OnInitDialog in StatisticsDlg.cpp diff --git a/UPnPImplMiniLib.cpp b/UPnPImplMiniLib.cpp index 94ca234a..2707ba52 100644 --- a/UPnPImplMiniLib.cpp +++ b/UPnPImplMiniLib.cpp @@ -41,15 +41,11 @@ static LPCTSTR sTCP = _T("TCP"); static LPCTSTR sUDP = _T("UDP"); CUPnPImplMiniLib::CUPnPImplMiniLib() - : m_hThreadHandle(NULL) + : m_bSucceededOnce(), m_pURLs(), m_pIGDData(), m_hThreadHandle(), m_bAbortDiscovery() { m_nOldUDPPort = 0; m_nOldTCPPort = 0; m_nOldTCPWebPort = 0; - m_pURLs = NULL; - m_pIGDData = NULL; - m_bAbortDiscovery = false; - m_bSucceededOnce = false; m_achLanIP[0] = 0; } diff --git a/UPnPImplWinServ.h b/UPnPImplWinServ.h index 30527e49..359ee22b 100644 --- a/UPnPImplWinServ.h +++ b/UPnPImplWinServ.h @@ -133,6 +133,7 @@ class CUPnPImplWinServ : public CUPnPImpl : m_udn(udn) { } + result_type operator()(argument_type device) const { CComBSTR deviceName; @@ -144,6 +145,7 @@ class CUPnPImplWinServ : public CUPnPImpl } return wcscmp(deviceName.m_str, m_udn) == 0; } + CComBSTR m_udn; }; @@ -199,8 +201,8 @@ class CDeviceFinderCallback : public IUPnPDeviceFinderCallback { public: - explicit CDeviceFinderCallback(CUPnPImplWinServ& instance) - : m_instance(instance), m_lRefCount(0) + explicit CDeviceFinderCallback(CUPnPImplWinServ &instance) + : m_instance(instance), m_lRefCount() { } @@ -224,8 +226,8 @@ class CServiceCallback : public IUPnPServiceCallback { public: - explicit CServiceCallback(CUPnPImplWinServ& instance) - : m_instance(instance), m_lRefCount(0) + explicit CServiceCallback(CUPnPImplWinServ &instance) + : m_instance(instance), m_lRefCount() { } diff --git a/UploadDiskIOThread.cpp b/UploadDiskIOThread.cpp index 2e295159..2807d5b0 100644 --- a/UploadDiskIOThread.cpp +++ b/UploadDiskIOThread.cpp @@ -47,7 +47,7 @@ static char THIS_FILE[] = __FILE__; IMPLEMENT_DYNCREATE(CUploadDiskIOThread, CWinThread) CUploadDiskIOThread::CUploadDiskIOThread() - : dbgDataReadPending(0), m_bRun(false), m_bSignalThrottler(false), m_eventAsyncIOFinished(FALSE, TRUE) + : dbgDataReadPending(), m_bRun(), m_bSignalThrottler(), m_eventAsyncIOFinished(FALSE, TRUE) { ASSERT(theApp.uploadqueue != NULL); m_eventThreadEnded = new CEvent(FALSE, TRUE); diff --git a/Version.h b/Version.h index b88b6ffb..7d308a81 100644 --- a/Version.h +++ b/Version.h @@ -31,7 +31,7 @@ #define VERSION_MJR 0 #define VERSION_MIN 51 #define VERSION_UPDATE 0 -#define VERSION_BUILD 10 +#define VERSION_BUILD 11 // NOTE: Do not forget to update file: res/eMule.manifest diff --git a/WebServer.cpp b/WebServer.cpp index e3d8a16d..d893ed8f 100644 --- a/WebServer.cpp +++ b/WebServer.cpp @@ -77,8 +77,8 @@ static BOOL WSserverColumnHidden[10]; static BOOL WSsearchColumnHidden[4]; CWebServer::CWebServer() - : m_Templates(), m_bServerWorking(false), m_iSearchSortby(3), m_bSearchAsc(false) - , m_nIntruderDetect(0), m_bIsTempDisabled(false), m_nStartTempDisabledTime(0), m_ulCurIP(0) + : m_Templates(), m_bServerWorking(), m_iSearchSortby(3), m_bSearchAsc() + , m_nIntruderDetect(), m_bIsTempDisabled(), m_nStartTempDisabledTime(), m_ulCurIP() { m_Params.sLastModified.Empty(); m_Params.sETag.Empty(); @@ -278,7 +278,10 @@ void CWebServer::StartServer() StopSockets(); UINT uid = (thePrefs.GetWSIsEnabled() && m_bServerWorking ? IDS_ENABLED : IDS_DISABLED); - AddLogLine(false, _T("%s: %s"), (LPCTSTR)_GetPlainResString(IDS_PW_WS), (LPCTSTR)_GetPlainResString(uid).MakeLower()); + AddLogLine(false, _T("%s: %s%s") + , (LPCTSTR)_GetPlainResString(IDS_PW_WS) + , (LPCTSTR)_GetPlainResString(uid).MakeLower() + , (uid == IDS_ENABLED && thePrefs.GetWebUseHttps()) ? _T(" (HTTPS)") : _T("")); } void CWebServer::_RemoveServer(const CString& sIP, int nPort) @@ -374,8 +377,8 @@ void CWebServer::ProcessURL(const ThreadData& Data) return; } - bool login; bool justAddLink = false; + bool login = false; CString sSession = _ParseURL(Data.sURL, _T("ses")); long lSession = sSession.IsEmpty() ? 0 : _tstol(sSession); @@ -423,7 +426,6 @@ void CWebServer::ProcessURL(const ThreadData& Data) CoUninitialize(); return; } - login = false; } isUseGzip = false; // [Julien] if (login) // on login, forget previous failed attempts @@ -507,7 +509,7 @@ void CWebServer::ProcessURL(const ThreadData& Data) EMFileSize filesize = kf->GetFileSize(); #define SENDFILEBUFSIZE 2048 - char* buffer = (char*)malloc(SENDFILEBUFSIZE); + char *buffer = (char *)malloc(SENDFILEBUFSIZE); if (!buffer) { Data.pSocket->SendReply("HTTP/1.1 500 Internal Server Error\r\n"); CoUninitialize(); diff --git a/Wizard.cpp b/Wizard.cpp index 965ad9fd..664c9ac0 100644 --- a/Wizard.cpp +++ b/Wizard.cpp @@ -45,11 +45,8 @@ BEGIN_MESSAGE_MAP(CConnectionWizardDlg, CDialog) END_MESSAGE_MAP() CConnectionWizardDlg::CConnectionWizardDlg(CWnd* pParent /*=NULL*/) - : CDialog(CConnectionWizardDlg::IDD, pParent) + : CDialog(CConnectionWizardDlg::IDD, pParent), m_icnWnd(), m_iOS(), m_iTotalDownload() { - m_iOS = 0; - m_iTotalDownload = 0; - m_icnWnd = NULL; } CConnectionWizardDlg::~CConnectionWizardDlg() diff --git a/ZIPFile.cpp b/ZIPFile.cpp index 173f0e53..35a919c8 100644 --- a/ZIPFile.cpp +++ b/ZIPFile.cpp @@ -212,13 +212,13 @@ BOOL CZIPFile::LocateCentralDirectory() if ( ! ParseCentralDirectory( pDirectory, pLoc->nDirectorySize ) ) { - delete [] m_pFile; + delete[] m_pFile; m_pFile = NULL; m_nFile = 0; } } - delete [] pDirectory; + delete[] pDirectory; return ( m_nFile > 0 ); } @@ -375,7 +375,7 @@ BOOL CZIPFile::File::PrepareToDecompress(LPVOID pStream) if ( nSource != (DWORD)m_nCompressedSize ) { inflateEnd( &pStream ); - delete [] pSource; + delete[] pSource; return NULL; } @@ -390,7 +390,7 @@ BOOL CZIPFile::File::PrepareToDecompress(LPVOID pStream) inflate( &pStream, Z_FINISH ); - delete [] pSource; + delete[] pSource; if ( pStream.avail_out != 0 ) { @@ -459,8 +459,8 @@ BOOL CZIPFile::File::Extract(LPCTSTR pszFile) } } - delete [] pBufferOut; - delete [] pBufferIn; + delete[] pBufferOut; + delete[] pBufferIn; inflateEnd( &pStream ); } @@ -481,7 +481,7 @@ BOOL CZIPFile::File::Extract(LPCTSTR pszFile) nUncompressed += nChunk; } - delete [] pBufferOut; + delete[] pBufferOut; } CloseHandle( hFile ); diff --git a/emule-all.sln b/emule-all.sln deleted file mode 100644 index ae96e9c9..00000000 --- a/emule-all.sln +++ /dev/null @@ -1,101 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27130.2036 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "emule", "emule.vcxproj", "{584EA69D-3443-4197-8994-364880FC1B9B}" - ProjectSection(ProjectDependencies) = postProject - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF} = {3423EC9A-52E4-4A4D-9753-EDEBC38785EF} - {B8C41401-6A2B-488D-B198-B0564C2B7404} = {B8C41401-6A2B-488D-B198-B0564C2B7404} - {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3} = {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3} - {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E} = {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E} - {46CF2D25-6A36-4189-B59C-E4815388E554} = {46CF2D25-6A36-4189-B59C-E4815388E554} - {D28CE435-CB33-4BAE-8A52-C6EF915956F5} = {D28CE435-CB33-4BAE-8A52-C6EF915956F5} - {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625} = {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625} - {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8} = {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cryptlib", "..\cryptopp\cryptlib.vcxproj", "{3423EC9A-52E4-4A4D-9753-EDEBC38785EF}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cximage", "CxImage\cximage.vcxproj", "{B8C41401-6A2B-488D-B198-B0564C2B7404}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "id3lib", "id3lib\libprj\id3lib.vcxproj", "{4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpng", "..\libpng\projects\visualc\libpng.vcxproj", "{E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mbedTLS", "..\mbedtls\visualc\vs2010\mbedTLS.vcxproj", "{46CF2D25-6A36-4189-B59C-E4815388E554}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniupnpc", "..\miniupnpc\msvc\miniupnpc.vcxproj", "{D28CE435-CB33-4BAE-8A52-C6EF915956F5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ResizableLib", "..\ResizableLib\ResizableLib.vcxproj", "{86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "..\zlib\contrib\vstudio\vc\zlib.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - _SpecialBootstrapNodes|Win32 = _SpecialBootstrapNodes|Win32 - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {584EA69D-3443-4197-8994-364880FC1B9B}._SpecialBootstrapNodes|Win32.ActiveCfg = _SpecialBootstrapNodes|Win32 - {584EA69D-3443-4197-8994-364880FC1B9B}._SpecialBootstrapNodes|Win32.Build.0 = _SpecialBootstrapNodes|Win32 - {584EA69D-3443-4197-8994-364880FC1B9B}.Debug|Win32.ActiveCfg = Debug|Win32 - {584EA69D-3443-4197-8994-364880FC1B9B}.Debug|Win32.Build.0 = Debug|Win32 - {584EA69D-3443-4197-8994-364880FC1B9B}.Release|Win32.ActiveCfg = Release|Win32 - {584EA69D-3443-4197-8994-364880FC1B9B}.Release|Win32.Build.0 = Release|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Debug|Win32.ActiveCfg = Debug|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Debug|Win32.Build.0 = Debug|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Release|Win32.ActiveCfg = Release|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Release|Win32.Build.0 = Release|Win32 - {B8C41401-6A2B-488D-B198-B0564C2B7404}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 - {B8C41401-6A2B-488D-B198-B0564C2B7404}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 - {B8C41401-6A2B-488D-B198-B0564C2B7404}.Debug|Win32.ActiveCfg = Debug|Win32 - {B8C41401-6A2B-488D-B198-B0564C2B7404}.Debug|Win32.Build.0 = Debug|Win32 - {B8C41401-6A2B-488D-B198-B0564C2B7404}.Release|Win32.ActiveCfg = Release|Win32 - {B8C41401-6A2B-488D-B198-B0564C2B7404}.Release|Win32.Build.0 = Release|Win32 - {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 - {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 - {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}.Debug|Win32.ActiveCfg = Debug|Win32 - {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}.Debug|Win32.Build.0 = Debug|Win32 - {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}.Release|Win32.ActiveCfg = Release|Win32 - {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}.Release|Win32.Build.0 = Release|Win32 - {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 - {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 - {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}.Debug|Win32.ActiveCfg = Debug|Win32 - {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}.Debug|Win32.Build.0 = Debug|Win32 - {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}.Release|Win32.ActiveCfg = Release|Win32 - {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}.Release|Win32.Build.0 = Release|Win32 - {46CF2D25-6A36-4189-B59C-E4815388E554}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 - {46CF2D25-6A36-4189-B59C-E4815388E554}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 - {46CF2D25-6A36-4189-B59C-E4815388E554}.Debug|Win32.ActiveCfg = Debug|Win32 - {46CF2D25-6A36-4189-B59C-E4815388E554}.Debug|Win32.Build.0 = Debug|Win32 - {46CF2D25-6A36-4189-B59C-E4815388E554}.Release|Win32.ActiveCfg = Release|Win32 - {46CF2D25-6A36-4189-B59C-E4815388E554}.Release|Win32.Build.0 = Release|Win32 - {D28CE435-CB33-4BAE-8A52-C6EF915956F5}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 - {D28CE435-CB33-4BAE-8A52-C6EF915956F5}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 - {D28CE435-CB33-4BAE-8A52-C6EF915956F5}.Debug|Win32.ActiveCfg = Debug|Win32 - {D28CE435-CB33-4BAE-8A52-C6EF915956F5}.Debug|Win32.Build.0 = Debug|Win32 - {D28CE435-CB33-4BAE-8A52-C6EF915956F5}.Release|Win32.ActiveCfg = Release|Win32 - {D28CE435-CB33-4BAE-8A52-C6EF915956F5}.Release|Win32.Build.0 = Release|Win32 - {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 - {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 - {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}.Debug|Win32.ActiveCfg = Debug|Win32 - {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}.Debug|Win32.Build.0 = Debug|Win32 - {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}.Release|Win32.ActiveCfg = Release|Win32 - {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}.Release|Win32.Build.0 = Release|Win32 - {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 - {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 - {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32 - {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32 - {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = Release|Win32 - {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {2C1E5378-BC3F-4BC6-B7F9-2F0D51248217} - EndGlobalSection -EndGlobal diff --git a/emule.cpp b/emule.cpp index d496d10e..6a494bc8 100644 --- a/emule.cpp +++ b/emule.cpp @@ -1243,7 +1243,7 @@ void CemuleApp::ShowHelp(UINT uTopic, UINT uCmd) bool CemuleApp::ShowWebHelp(UINT uTopic) { CString strHelpURL; - strHelpURL.Format(_T("http://onlinehelp.emule-project.net/help.php?language=%u&topic=%u"), thePrefs.GetLanguageID(), uTopic); + strHelpURL.Format(_T("https://onlinehelp.emule-project.net/help.php?language=%u&topic=%u"), thePrefs.GetLanguageID(), uTopic); ShellExecute(NULL, NULL, strHelpURL, NULL, thePrefs.GetMuleDirectory(EMULE_EXECUTEABLEDIR), SW_SHOWDEFAULT); return true; } diff --git a/emule.h b/emule.h index f3b70d35..fb25b898 100644 --- a/emule.h +++ b/emule.h @@ -53,7 +53,8 @@ class CUploadDiskIOThread; struct SLogItem; -enum AppState { +enum AppState +{ APP_STATE_STARTING = 0, //initialization phase APP_STATE_RUNNING, APP_STATE_ASKCLOSE, //exit confirmation dialog is active diff --git a/emule.sln b/emule.sln index 7c29cec7..ae96e9c9 100644 --- a/emule.sln +++ b/emule.sln @@ -1,20 +1,101 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2036 +MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "emule", "emule.vcxproj", "{584EA69D-3443-4197-8994-364880FC1B9B}" + ProjectSection(ProjectDependencies) = postProject + {3423EC9A-52E4-4A4D-9753-EDEBC38785EF} = {3423EC9A-52E4-4A4D-9753-EDEBC38785EF} + {B8C41401-6A2B-488D-B198-B0564C2B7404} = {B8C41401-6A2B-488D-B198-B0564C2B7404} + {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3} = {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3} + {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E} = {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E} + {46CF2D25-6A36-4189-B59C-E4815388E554} = {46CF2D25-6A36-4189-B59C-E4815388E554} + {D28CE435-CB33-4BAE-8A52-C6EF915956F5} = {D28CE435-CB33-4BAE-8A52-C6EF915956F5} + {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625} = {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625} + {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8} = {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cryptlib", "..\cryptopp\cryptlib.vcxproj", "{3423EC9A-52E4-4A4D-9753-EDEBC38785EF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cximage", "CxImage\cximage.vcxproj", "{B8C41401-6A2B-488D-B198-B0564C2B7404}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "id3lib", "id3lib\libprj\id3lib.vcxproj", "{4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpng", "..\libpng\projects\visualc\libpng.vcxproj", "{E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mbedTLS", "..\mbedtls\visualc\vs2010\mbedTLS.vcxproj", "{46CF2D25-6A36-4189-B59C-E4815388E554}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniupnpc", "..\miniupnpc\msvc\miniupnpc.vcxproj", "{D28CE435-CB33-4BAE-8A52-C6EF915956F5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ResizableLib", "..\ResizableLib\ResizableLib.vcxproj", "{86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "..\zlib\contrib\vstudio\vc\zlib.vcxproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + _SpecialBootstrapNodes|Win32 = _SpecialBootstrapNodes|Win32 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {584EA69D-3443-4197-8994-364880FC1B9B}._SpecialBootstrapNodes|Win32.ActiveCfg = _SpecialBootstrapNodes|Win32 + {584EA69D-3443-4197-8994-364880FC1B9B}._SpecialBootstrapNodes|Win32.Build.0 = _SpecialBootstrapNodes|Win32 {584EA69D-3443-4197-8994-364880FC1B9B}.Debug|Win32.ActiveCfg = Debug|Win32 {584EA69D-3443-4197-8994-364880FC1B9B}.Debug|Win32.Build.0 = Debug|Win32 {584EA69D-3443-4197-8994-364880FC1B9B}.Release|Win32.ActiveCfg = Release|Win32 {584EA69D-3443-4197-8994-364880FC1B9B}.Release|Win32.Build.0 = Release|Win32 + {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 + {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 + {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Debug|Win32.ActiveCfg = Debug|Win32 + {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Debug|Win32.Build.0 = Debug|Win32 + {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Release|Win32.ActiveCfg = Release|Win32 + {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Release|Win32.Build.0 = Release|Win32 + {B8C41401-6A2B-488D-B198-B0564C2B7404}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 + {B8C41401-6A2B-488D-B198-B0564C2B7404}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 + {B8C41401-6A2B-488D-B198-B0564C2B7404}.Debug|Win32.ActiveCfg = Debug|Win32 + {B8C41401-6A2B-488D-B198-B0564C2B7404}.Debug|Win32.Build.0 = Debug|Win32 + {B8C41401-6A2B-488D-B198-B0564C2B7404}.Release|Win32.ActiveCfg = Release|Win32 + {B8C41401-6A2B-488D-B198-B0564C2B7404}.Release|Win32.Build.0 = Release|Win32 + {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 + {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 + {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}.Debug|Win32.ActiveCfg = Debug|Win32 + {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}.Debug|Win32.Build.0 = Debug|Win32 + {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}.Release|Win32.ActiveCfg = Release|Win32 + {4AACBF8D-B90F-41AD-A5BE-D5E557C668E3}.Release|Win32.Build.0 = Release|Win32 + {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 + {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 + {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}.Debug|Win32.ActiveCfg = Debug|Win32 + {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}.Debug|Win32.Build.0 = Debug|Win32 + {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}.Release|Win32.ActiveCfg = Release|Win32 + {E27AB0B5-84CC-47E8-8F43-34C4F3FDA71E}.Release|Win32.Build.0 = Release|Win32 + {46CF2D25-6A36-4189-B59C-E4815388E554}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 + {46CF2D25-6A36-4189-B59C-E4815388E554}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 + {46CF2D25-6A36-4189-B59C-E4815388E554}.Debug|Win32.ActiveCfg = Debug|Win32 + {46CF2D25-6A36-4189-B59C-E4815388E554}.Debug|Win32.Build.0 = Debug|Win32 + {46CF2D25-6A36-4189-B59C-E4815388E554}.Release|Win32.ActiveCfg = Release|Win32 + {46CF2D25-6A36-4189-B59C-E4815388E554}.Release|Win32.Build.0 = Release|Win32 + {D28CE435-CB33-4BAE-8A52-C6EF915956F5}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 + {D28CE435-CB33-4BAE-8A52-C6EF915956F5}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 + {D28CE435-CB33-4BAE-8A52-C6EF915956F5}.Debug|Win32.ActiveCfg = Debug|Win32 + {D28CE435-CB33-4BAE-8A52-C6EF915956F5}.Debug|Win32.Build.0 = Debug|Win32 + {D28CE435-CB33-4BAE-8A52-C6EF915956F5}.Release|Win32.ActiveCfg = Release|Win32 + {D28CE435-CB33-4BAE-8A52-C6EF915956F5}.Release|Win32.Build.0 = Release|Win32 + {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 + {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 + {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}.Debug|Win32.ActiveCfg = Debug|Win32 + {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}.Debug|Win32.Build.0 = Debug|Win32 + {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}.Release|Win32.ActiveCfg = Release|Win32 + {86CEC5CB-94DE-4E3C-A1C6-0653D58C0625}.Release|Win32.Build.0 = Release|Win32 + {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}._SpecialBootstrapNodes|Win32.ActiveCfg = Debug|Win32 + {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}._SpecialBootstrapNodes|Win32.Build.0 = Debug|Win32 + {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32 + {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32 + {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = Release|Win32 + {745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2C1E5378-BC3F-4BC6-B7F9-2F0D51248217} + EndGlobalSection EndGlobal diff --git a/emuleDlg.h b/emuleDlg.h index ee6842d2..ccd71972 100644 --- a/emuleDlg.h +++ b/emuleDlg.h @@ -83,7 +83,8 @@ class CemuleDlg : public CTrayDialog void OnTBBPressed(UINT id); void EnableTaskbarGoodies(bool enable); - enum TBBIDS { + enum TBBIDS + { TBB_FIRST, TBB_CONNECT=TBB_FIRST, TBB_DISCONNECT, diff --git a/id3lib/include/id3/globals.h b/id3lib/include/id3/globals.h index d259bc30..abec8732 100644 --- a/id3lib/include/id3/globals.h +++ b/id3lib/include/id3/globals.h @@ -433,7 +433,8 @@ ID3_ENUM(ID3_Err) // ID3E_FieldNotFound, /**< Requested field not found */ // ID3E_TagAlreadyAttached, /**< Tag is already attached to a file */ // ID3E_InvalidTagVersion, /**< Invalid tag version */ - ID3E_zlibError /**< Error in compression/uncompression */ + ID3E_zlibError = 15, /**< Error in compression/uncompression */ + ID3E_LastError // Prevents undefined behaviour when casting values < 17 // We use these errors in a hack in RenderV2ToFile; for this, it is important to keep // the errors which can be returned from createFile(), openWritableFile and ID3E_NoFile and ID3E_ReadOnly // below the minimum tag size ( which is 10 bytes for the header, + 7 bytes for a minimal (2.2) frame diff --git a/lang/ar_AE.vcproj b/lang/ar_AE.vcproj deleted file mode 100644 index d72d2fe9..00000000 --- a/lang/ar_AE.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ar_AE.vcxproj b/lang/ar_AE.vcxproj new file mode 100644 index 00000000..ad59736f --- /dev/null +++ b/lang/ar_AE.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Arabic (UAE) + {A710033C-F75A-4431-96AA-876A9867A2F8} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)ar_AE.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)ar_AE.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/ar_AE_vc71.vcproj b/lang/ar_AE_vc71.vcproj deleted file mode 100644 index 4e321569..00000000 --- a/lang/ar_AE_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ba_BA.vcproj b/lang/ba_BA.vcproj deleted file mode 100644 index 205540cb..00000000 --- a/lang/ba_BA.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ba_BA.vcxproj b/lang/ba_BA.vcxproj new file mode 100644 index 00000000..4716a418 --- /dev/null +++ b/lang/ba_BA.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Basque + {EAEEB94B-AA03-4E8D-8135-D02D22FBD422} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)ba_BA.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)ba_BA.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/ba_BA_vc71.vcproj b/lang/ba_BA_vc71.vcproj deleted file mode 100644 index f36f095f..00000000 --- a/lang/ba_BA_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/bg_BG.vcproj b/lang/bg_BG.vcproj deleted file mode 100644 index 1d0222fb..00000000 --- a/lang/bg_BG.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/bg_BG.vcxproj b/lang/bg_BG.vcxproj new file mode 100644 index 00000000..4e81edf5 --- /dev/null +++ b/lang/bg_BG.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Bulgarian + {44716561-6BA7-40DA-AE7F-F3FFB422E86D} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)bg_BG.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)bg_BG.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/bg_BG_vc71.vcproj b/lang/bg_BG_vc71.vcproj deleted file mode 100644 index d4160a75..00000000 --- a/lang/bg_BG_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ca_ES.vcproj b/lang/ca_ES.vcproj deleted file mode 100644 index c18a5f6e..00000000 --- a/lang/ca_ES.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ca_ES.vcxproj b/lang/ca_ES.vcxproj new file mode 100644 index 00000000..efc178c7 --- /dev/null +++ b/lang/ca_ES.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Catalan + {0C96EF73-186D-4888-BB53-EECE60B55647} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)ca_ES.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)ca_ES.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/ca_ES_vc71.vcproj b/lang/ca_ES_vc71.vcproj deleted file mode 100644 index f16e2623..00000000 --- a/lang/ca_ES_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/cz_CZ.vcproj b/lang/cz_CZ.vcproj deleted file mode 100644 index ae3a95c8..00000000 --- a/lang/cz_CZ.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/cz_CZ.vcxproj b/lang/cz_CZ.vcxproj new file mode 100644 index 00000000..817c1ecd --- /dev/null +++ b/lang/cz_CZ.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Czech + {E5EF62C7-377D-4B61-8244-CC4F8555F733} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)cz_CZ.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)cz_CZ.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/cz_CZ_vc71.vcproj b/lang/cz_CZ_vc71.vcproj deleted file mode 100644 index a55acebc..00000000 --- a/lang/cz_CZ_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/da_DK.vcproj b/lang/da_DK.vcproj deleted file mode 100644 index 6cac31b2..00000000 --- a/lang/da_DK.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/da_DK.vcxproj b/lang/da_DK.vcxproj new file mode 100644 index 00000000..60de6bf5 --- /dev/null +++ b/lang/da_DK.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Danish + {0C42D310-84EB-462F-944B-7166C0D071E9} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)da_DK.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)da_DK.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/da_DK_vc71.vcproj b/lang/da_DK_vc71.vcproj deleted file mode 100644 index bdfa092e..00000000 --- a/lang/da_DK_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/de_DE.vcproj b/lang/de_DE.vcproj deleted file mode 100644 index f0e27b11..00000000 --- a/lang/de_DE.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/de_DE.vcxproj b/lang/de_DE.vcxproj new file mode 100644 index 00000000..e9c6a21f --- /dev/null +++ b/lang/de_DE.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - German (Germany) + {8104E8D8-7343-4BE7-8955-80A1F2D26EC1} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)de_DE.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)de_DE.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/de_DE_vc71.vcproj b/lang/de_DE_vc71.vcproj deleted file mode 100644 index 55e3cd45..00000000 --- a/lang/de_DE_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/el_GR.vcproj b/lang/el_GR.vcproj deleted file mode 100644 index 79a5843f..00000000 --- a/lang/el_GR.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/el_GR.vcxproj b/lang/el_GR.vcxproj new file mode 100644 index 00000000..52067057 --- /dev/null +++ b/lang/el_GR.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Greek + {8DA8A9E2-9987-4B68-9825-45C445C52730} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)el_GR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)el_GR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/el_GR_vc71.vcproj b/lang/el_GR_vc71.vcproj deleted file mode 100644 index 1efbb676..00000000 --- a/lang/el_GR_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/es_AS.vcproj b/lang/es_AS.vcproj deleted file mode 100644 index fbc98785..00000000 --- a/lang/es_AS.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/es_AS.vcxproj b/lang/es_AS.vcxproj new file mode 100644 index 00000000..54eadeb2 --- /dev/null +++ b/lang/es_AS.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Asturian + {E32658C1-CD24-40DC-8912-C7D3FE803FC1} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)es_AS.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)es_AS.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/es_AS_vc71.vcproj b/lang/es_AS_vc71.vcproj deleted file mode 100644 index 79b54d82..00000000 --- a/lang/es_AS_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/es_ES_T.vcproj b/lang/es_ES_T.vcproj deleted file mode 100644 index 6e5065db..00000000 --- a/lang/es_ES_T.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/es_ES_T.vcxproj b/lang/es_ES_T.vcxproj new file mode 100644 index 00000000..d24dcf8c --- /dev/null +++ b/lang/es_ES_T.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Spanish (Castilian) + {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)es_ES_T.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)es_ES_T.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/es_ES_T_vc71.vcproj b/lang/es_ES_T_vc71.vcproj deleted file mode 100644 index b8758b9c..00000000 --- a/lang/es_ES_T_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/et_EE.vcproj b/lang/et_EE.vcproj deleted file mode 100644 index b90f475d..00000000 --- a/lang/et_EE.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/et_EE.vcxproj b/lang/et_EE.vcxproj new file mode 100644 index 00000000..e1fcc782 --- /dev/null +++ b/lang/et_EE.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Estonian + {14AB1B79-6F57-43EB-A5EA-B9B117B659B4} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)et_EE.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)et_EE.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/et_EE_vc71.vcproj b/lang/et_EE_vc71.vcproj deleted file mode 100644 index 2716acdf..00000000 --- a/lang/et_EE_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/fa_IR.vcproj b/lang/fa_IR.vcproj deleted file mode 100644 index 2208f085..00000000 --- a/lang/fa_IR.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/fa_IR.vcxproj b/lang/fa_IR.vcxproj new file mode 100644 index 00000000..5740896e --- /dev/null +++ b/lang/fa_IR.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Farsi + {F2ED1274-6DA7-4F08-B9C8-1915409EAEC1} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)fa_IR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)fa_IR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/fa_IR_vc71.vcproj b/lang/fa_IR_vc71.vcproj deleted file mode 100644 index bb8dec65..00000000 --- a/lang/fa_IR_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/fi_FI.vcproj b/lang/fi_FI.vcproj deleted file mode 100644 index 75b68901..00000000 --- a/lang/fi_FI.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/fi_FI.vcxproj b/lang/fi_FI.vcxproj new file mode 100644 index 00000000..22e23411 --- /dev/null +++ b/lang/fi_FI.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Finnish + {745D6455-7389-4C76-8275-D91F7451E0FA} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)fi_FI.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)fi_FI.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/fi_FI_vc71.vcproj b/lang/fi_FI_vc71.vcproj deleted file mode 100644 index 46bae74c..00000000 --- a/lang/fi_FI_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/fr_BR.vcproj b/lang/fr_BR.vcproj deleted file mode 100644 index 2805dd16..00000000 --- a/lang/fr_BR.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/fr_BR.vcxproj b/lang/fr_BR.vcxproj new file mode 100644 index 00000000..f9ef1787 --- /dev/null +++ b/lang/fr_BR.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - French (Breton) + {5E420537-E1A9-4004-BBDC-F2853AAD5485} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)fr_BR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\Debug\lang md ..\Debug\lang +copy "$(TargetPath)" ..\Debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)fr_BR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\Debug\lang md ..\Debug\lang +copy "$(TargetPath)" ..\Debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/fr_BR_vc71.vcproj b/lang/fr_BR_vc71.vcproj deleted file mode 100644 index 1dc03699..00000000 --- a/lang/fr_BR_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/fr_FR.vcproj b/lang/fr_FR.vcproj deleted file mode 100644 index 9723da0a..00000000 --- a/lang/fr_FR.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/fr_FR.vcxproj b/lang/fr_FR.vcxproj new file mode 100644 index 00000000..9db9898f --- /dev/null +++ b/lang/fr_FR.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - French (France) + {A7E4E792-AA76-4977-A725-1C428AADE381} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)fr_FR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)fr_FR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/fr_FR_vc71.vcproj b/lang/fr_FR_vc71.vcproj deleted file mode 100644 index fee1a6e3..00000000 --- a/lang/fr_FR_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/gl_ES.vcproj b/lang/gl_ES.vcproj deleted file mode 100644 index 17a6d3f3..00000000 --- a/lang/gl_ES.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/gl_ES.vcxproj b/lang/gl_ES.vcxproj new file mode 100644 index 00000000..25b15b1e --- /dev/null +++ b/lang/gl_ES.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Galician + {583840C9-525A-4417-866C-6197EBC12214} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)gl_ES.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)gl_ES.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/gl_ES_vc71.vcproj b/lang/gl_ES_vc71.vcproj deleted file mode 100644 index a8f90404..00000000 --- a/lang/gl_ES_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/he_IL.vcproj b/lang/he_IL.vcproj deleted file mode 100644 index 15d3d983..00000000 --- a/lang/he_IL.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/he_IL.vcxproj b/lang/he_IL.vcxproj new file mode 100644 index 00000000..8c6a0558 --- /dev/null +++ b/lang/he_IL.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Hebrew (Israel) + {6191AA5F-75C1-4448-9CE1-E5DED284501B} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)he_IL.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)he_IL.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/he_IL_vc71.vcproj b/lang/he_IL_vc71.vcproj deleted file mode 100644 index b50e9f25..00000000 --- a/lang/he_IL_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/hu_HU.vcproj b/lang/hu_HU.vcproj deleted file mode 100644 index 4e9e97ab..00000000 --- a/lang/hu_HU.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/hu_HU.vcxproj b/lang/hu_HU.vcxproj new file mode 100644 index 00000000..a41fa882 --- /dev/null +++ b/lang/hu_HU.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Hungarian + {3C9B64A2-6676-4A60-A805-15301A18C550} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)hu_HU.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)hu_HU.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/hu_HU_vc71.vcproj b/lang/hu_HU_vc71.vcproj deleted file mode 100644 index a00eef80..00000000 --- a/lang/hu_HU_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/it_IT.vcproj b/lang/it_IT.vcproj deleted file mode 100644 index 0f734da1..00000000 --- a/lang/it_IT.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/it_IT.vcxproj b/lang/it_IT.vcxproj new file mode 100644 index 00000000..1f543c5d --- /dev/null +++ b/lang/it_IT.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Italian (Italy) + {FEF2FD72-388B-42F6-B5DA-B9A663ACF557} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)it_IT.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)it_IT.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/it_IT_vc71.vcproj b/lang/it_IT_vc71.vcproj deleted file mode 100644 index de77ee43..00000000 --- a/lang/it_IT_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/jp_JP.vcproj b/lang/jp_JP.vcproj deleted file mode 100644 index 3208dd03..00000000 --- a/lang/jp_JP.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/jp_JP.vcxproj b/lang/jp_JP.vcxproj new file mode 100644 index 00000000..53c86ede --- /dev/null +++ b/lang/jp_JP.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Japanese + {76FA1CA3-FC3D-45D2-86A8-B068F551652F} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)jp_JP.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)jp_JP.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/jp_JP_vc71.vcproj b/lang/jp_JP_vc71.vcproj deleted file mode 100644 index aa3e0c54..00000000 --- a/lang/jp_JP_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ko_KR.vcproj b/lang/ko_KR.vcproj deleted file mode 100644 index fccd7678..00000000 --- a/lang/ko_KR.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ko_KR.vcxproj b/lang/ko_KR.vcxproj new file mode 100644 index 00000000..0738838d --- /dev/null +++ b/lang/ko_KR.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Korean + {AA2EA361-4793-4FF7-A042-40E271030CC4} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)ko_KR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)ko_KR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/ko_KR_vc71.vcproj b/lang/ko_KR_vc71.vcproj deleted file mode 100644 index 20e95dd9..00000000 --- a/lang/ko_KR_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/lang.sln b/lang/lang.sln index 962213c9..34c4f733 100644 --- a/lang/lang.sln +++ b/lang/lang.sln @@ -1,179 +1,274 @@ -Microsoft Visual Studio Solution File, Format Version 7.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Arabic (UAE)", "ar_AE.vcproj", "{A710033C-F75A-4431-96AA-876A9867A2F8}" +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Arabic (UAE)", "ar_AE.vcxproj", "{A710033C-F75A-4431-96AA-876A9867A2F8}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Bulgarian", "bg_BG.vcproj", "{44716561-6BA7-40DA-AE7F-F3FFB422E86D}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Bulgarian", "bg_BG.vcxproj", "{44716561-6BA7-40DA-AE7F-F3FFB422E86D}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Catalan", "ca_ES.vcproj", "{0C96EF73-186D-4888-BB53-EECE60B55647}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Catalan", "ca_ES.vcxproj", "{0C96EF73-186D-4888-BB53-EECE60B55647}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Danish", "da_DK.vcproj", "{0C42D310-84EB-462F-944B-7166C0D071E9}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Danish", "da_DK.vcxproj", "{0C42D310-84EB-462F-944B-7166C0D071E9}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - German (Germany)", "de_DE.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - German (Germany)", "de_DE.vcxproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Greek", "el_GR.vcproj", "{8DA8A9E2-9987-4B68-9825-45C445C52730}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Greek", "el_GR.vcxproj", "{8DA8A9E2-9987-4B68-9825-45C445C52730}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Spanish (Castilian)", "es_ES_T.vcproj", "{B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Spanish (Castilian)", "es_ES_T.vcxproj", "{B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Estonian", "et_EE.vcproj", "{14AB1B79-6F57-43EB-A5EA-B9B117B659B4}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Estonian", "et_EE.vcxproj", "{14AB1B79-6F57-43EB-A5EA-B9B117B659B4}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Farsi", "fa_IR.vcproj", "{F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Finnish", "fi_FI.vcxproj", "{745D6455-7389-4C76-8275-D91F7451E0FA}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Finnish", "fi_FI.vcproj", "{745D6455-7389-4C76-8275-D91F7451E0FA}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - French (France)", "fr_FR.vcxproj", "{A7E4E792-AA76-4977-A725-1C428AADE381}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - French (France)", "fr_FR.vcproj", "{A7E4E792-AA76-4977-A725-1C428AADE381}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Hungarian", "hu_HU.vcxproj", "{3C9B64A2-6676-4A60-A805-15301A18C550}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Hungarian", "hu_HU.vcproj", "{3C9B64A2-6676-4A60-A805-15301A18C550}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Italian (Italy)", "it_IT.vcxproj", "{FEF2FD72-388B-42F6-B5DA-B9A663ACF557}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Italian (Italy)", "it_IT.vcproj", "{FEF2FD72-388B-42F6-B5DA-B9A663ACF557}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Korean", "ko_KR.vcxproj", "{AA2EA361-4793-4FF7-A042-40E271030CC4}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Korean", "ko_KR.vcproj", "{AA2EA361-4793-4FF7-A042-40E271030CC4}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Lithuanian", "lt_LT.vcxproj", "{9B6F843F-A792-466D-98E3-A3921525AFF5}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Lithuanian", "lt_LT.vcproj", "{9B6F843F-A792-466D-98E3-A3921525AFF5}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Latvian", "lv_LV.vcxproj", "{2885B86D-9DDA-460C-9FB8-41B005F15349}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Latvian", "lv_LV.vcproj", "{2885B86D-9DDA-460C-9FB8-41B005F15349}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Norwegian (Bokmal)", "nb_NO.vcxproj", "{DE470764-A818-4780-B590-78EB8D560E89}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Norwegian (Bokmal)", "nb_NO.vcproj", "{DE470764-A818-4780-B590-78EB8D560E89}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Dutch (Netherlands)", "nl_NL.vcxproj", "{A989B752-28A2-44E7-8C19-F49C7ECD61DC}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Dutch (Netherlands)", "nl_NL.vcproj", "{A989B752-28A2-44E7-8C19-F49C7ECD61DC}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Polish", "pl_PL.vcxproj", "{57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Polish", "pl_PL.vcproj", "{57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Portuguese (Brazil)", "pt_BR.vcxproj", "{C7F4CB73-7D57-4077-9C04-931A6CB0677D}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Portuguese (Brazil)", "pt_BR.vcproj", "{C7F4CB73-7D57-4077-9C04-931A6CB0677D}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Portuguese (Portugal)", "pt_PT.vcxproj", "{64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Portuguese (Portugal)", "pt_PT.vcproj", "{64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Russian", "ru_RU.vcxproj", "{4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Russian", "ru_RU.vcproj", "{4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Slovenian", "sl_SI.vcxproj", "{F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Slovenian", "sl_SI.vcproj", "{F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Swedish", "sv_SE.vcxproj", "{2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Swedish", "sv_SE.vcproj", "{2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Turkish", "tr_TR.vcxproj", "{EFE9605D-BF5C-4339-9A5A-32184D4BD03C}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Turkish", "tr_TR.vcproj", "{EFE9605D-BF5C-4339-9A5A-32184D4BD03C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Chinese (P.R.C.)", "zh_CN.vcxproj", "{BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Chinese (P.R.C.)", "zh_CN.vcproj", "{BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Chinese (Taiwan)", "zh_TW.vcxproj", "{DB748474-ADA6-4AEB-8694-F02088D88AD7}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Chinese (Taiwan)", "zh_TW.vcproj", "{DB748474-ADA6-4AEB-8694-F02088D88AD7}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Galician", "gl_ES.vcxproj", "{583840C9-525A-4417-866C-6197EBC12214}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Galician", "gl_ES.vcproj", "{583840C9-525A-4417-866C-6197EBC12214}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Hebrew (Israel)", "he_IL.vcxproj", "{6191AA5F-75C1-4448-9CE1-E5DED284501B}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Hebrew (Israel)", "he_IL.vcproj", "{A7E4E792-AA76-4977-A725-1C428AADE381}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Japanese", "jp_JP.vcxproj", "{76FA1CA3-FC3D-45D2-86A8-B068F551652F}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Japanese", "jp_JP.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Czech", "cz_CZ.vcxproj", "{E5EF62C7-377D-4B61-8244-CC4F8555F733}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Czech", "cz_CZ.vcproj", "{0C42D310-84EB-462F-944B-7166C0D071E9}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Romania", "ro_RO.vcxproj", "{3DCA40EE-0C42-4D51-996F-EF2D3E599738}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Romania", "ro_RO.vcproj", "{4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - French (Breton)", "fr_BR.vcxproj", "{5E420537-E1A9-4004-BBDC-F2853AAD5485}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - French (Breton)", "fr_BR.vcproj", "{A7E4E792-AA76-4977-A725-1C428AADE381}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Basque", "ba_BA.vcxproj", "{EAEEB94B-AA03-4E8D-8135-D02D22FBD422}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Basque", "ba_BA.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Norwegian (Nynorsk)", "nn_NO.vcxproj", "{67E3DA3B-6DA6-4948-BA97-3C2519F4DCC6}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Norwegian (Nynorsk)", "nn_NO.vcproj", "{DE470764-A818-4780-B590-78EB8D560E89}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Albanian (Albania)", "sq_AL.vcxproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC2}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Albanian (Albania)", "sq_AL.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC2}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Ukrainian", "ua_UA.vcxproj", "{7DB64944-4784-4F40-9F87-98B8BC623854}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Ukrainian", "ua_UA.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Maltese", "mt_MT.vcxproj", "{D0CFB304-1B97-4C5E-AF66-35A223DDB14B}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Maltese", "mt_MT.vcproj", "{EFE9605D-BF5C-4339-9A5A-32184D4BD03C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Asturian", "es_AS.vcxproj", "{E32658C1-CD24-40DC-8912-C7D3FE803FC1}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Asturian", "es_AS.vcproj", "{B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Vietnamese", "vi_VN.vcxproj", "{2A1AEDDB-5ED3-4CA7-8E2D-B0178131397F}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Vietnamese", "vi_VN.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Valencian", "va_ES.vcxproj", "{631B7B35-DF4B-480A-A61E-F6693403FE5E}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Valencian", "va_ES.vcproj", "{506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Farsi", "fa_IR.vcxproj", "{F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Valencian (RACV)", "va_ES_RACV.vcproj", "{506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Uighur (PRC)", "ug_CN.vcxproj", "{246A71D1-8AD2-46A1-B04D-8EEF78036F27}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Valencian (RACV)", "va_ES_RACV.vcxproj", "{506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}" EndProject Global - GlobalSection(SolutionConfiguration) = preSolution - ConfigName.0 = Dynamic - EndGlobalSection - GlobalSection(ProjectDependencies) = postSolution - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {A710033C-F75A-4431-96AA-876A9867A2F8}.Dynamic.ActiveCfg = Dynamic|Win32 - {A710033C-F75A-4431-96AA-876A9867A2F8}.Dynamic.Build.0 = Dynamic|Win32 - {44716561-6BA7-40DA-AE7F-F3FFB422E86D}.Dynamic.ActiveCfg = Dynamic|Win32 - {44716561-6BA7-40DA-AE7F-F3FFB422E86D}.Dynamic.Build.0 = Dynamic|Win32 - {0C96EF73-186D-4888-BB53-EECE60B55647}.Dynamic.ActiveCfg = Dynamic|Win32 - {0C96EF73-186D-4888-BB53-EECE60B55647}.Dynamic.Build.0 = Dynamic|Win32 - {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic.ActiveCfg = Dynamic|Win32 - {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {8DA8A9E2-9987-4B68-9825-45C445C52730}.Dynamic.ActiveCfg = Dynamic|Win32 - {8DA8A9E2-9987-4B68-9825-45C445C52730}.Dynamic.Build.0 = Dynamic|Win32 - {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic.ActiveCfg = Dynamic|Win32 - {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic.Build.0 = Dynamic|Win32 - {14AB1B79-6F57-43EB-A5EA-B9B117B659B4}.Dynamic.ActiveCfg = Dynamic|Win32 - {14AB1B79-6F57-43EB-A5EA-B9B117B659B4}.Dynamic.Build.0 = Dynamic|Win32 - {745D6455-7389-4C76-8275-D91F7451E0FA}.Dynamic.ActiveCfg = Dynamic|Win32 - {745D6455-7389-4C76-8275-D91F7451E0FA}.Dynamic.Build.0 = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.ActiveCfg = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.Build.0 = Dynamic|Win32 - {3C9B64A2-6676-4A60-A805-15301A18C550}.Dynamic.ActiveCfg = Dynamic|Win32 - {3C9B64A2-6676-4A60-A805-15301A18C550}.Dynamic.Build.0 = Dynamic|Win32 - {FEF2FD72-388B-42F6-B5DA-B9A663ACF557}.Dynamic.ActiveCfg = Dynamic|Win32 - {FEF2FD72-388B-42F6-B5DA-B9A663ACF557}.Dynamic.Build.0 = Dynamic|Win32 - {AA2EA361-4793-4FF7-A042-40E271030CC4}.Dynamic.ActiveCfg = Dynamic|Win32 - {AA2EA361-4793-4FF7-A042-40E271030CC4}.Dynamic.Build.0 = Dynamic|Win32 - {9B6F843F-A792-466D-98E3-A3921525AFF5}.Dynamic.ActiveCfg = Dynamic|Win32 - {9B6F843F-A792-466D-98E3-A3921525AFF5}.Dynamic.Build.0 = Dynamic|Win32 - {2885B86D-9DDA-460C-9FB8-41B005F15349}.Dynamic.ActiveCfg = Dynamic|Win32 - {2885B86D-9DDA-460C-9FB8-41B005F15349}.Dynamic.Build.0 = Dynamic|Win32 - {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic.ActiveCfg = Dynamic|Win32 - {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic.Build.0 = Dynamic|Win32 - {A989B752-28A2-44E7-8C19-F49C7ECD61DC}.Dynamic.ActiveCfg = Dynamic|Win32 - {A989B752-28A2-44E7-8C19-F49C7ECD61DC}.Dynamic.Build.0 = Dynamic|Win32 - {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}.Dynamic.ActiveCfg = Dynamic|Win32 - {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}.Dynamic.Build.0 = Dynamic|Win32 - {C7F4CB73-7D57-4077-9C04-931A6CB0677D}.Dynamic.ActiveCfg = Dynamic|Win32 - {C7F4CB73-7D57-4077-9C04-931A6CB0677D}.Dynamic.Build.0 = Dynamic|Win32 - {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}.Dynamic.ActiveCfg = Dynamic|Win32 - {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}.Dynamic.Build.0 = Dynamic|Win32 - {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic.ActiveCfg = Dynamic|Win32 - {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic.Build.0 = Dynamic|Win32 - {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}.Dynamic.ActiveCfg = Dynamic|Win32 - {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}.Dynamic.Build.0 = Dynamic|Win32 - {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}.Dynamic.ActiveCfg = Dynamic|Win32 - {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}.Dynamic.Build.0 = Dynamic|Win32 - {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic.ActiveCfg = Dynamic|Win32 - {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic.Build.0 = Dynamic|Win32 - {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}.Dynamic.ActiveCfg = Dynamic|Win32 - {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}.Dynamic.Build.0 = Dynamic|Win32 - {DB748474-ADA6-4AEB-8694-F02088D88AD7}.Dynamic.ActiveCfg = Dynamic|Win32 - {DB748474-ADA6-4AEB-8694-F02088D88AD7}.Dynamic.Build.0 = Dynamic|Win32 - {583840C9-525A-4417-866C-6197EBC12214}.Dynamic.ActiveCfg = Dynamic|Win32 - {583840C9-525A-4417-866C-6197EBC12214}.Dynamic.Build.0 = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.ActiveCfg = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic.ActiveCfg = Dynamic|Win32 - {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic.Build.0 = Dynamic|Win32 - {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic.ActiveCfg = Dynamic|Win32 - {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic.Build.0 = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.ActiveCfg = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic.ActiveCfg = Dynamic|Win32 - {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC2}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC2}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic.ActiveCfg = Dynamic|Win32 - {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic.Build.0 = Dynamic|Win32 - {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic.ActiveCfg = Dynamic|Win32 - {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}.Dynamic.ActiveCfg = Dynamic|Win32 - {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}.Dynamic.Build.0 = Dynamic|Win32 + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Dynamic|x64 = Dynamic|x64 + Dynamic|x86 = Dynamic|x86 EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A710033C-F75A-4431-96AA-876A9867A2F8}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {A710033C-F75A-4431-96AA-876A9867A2F8}.Dynamic|x64.Build.0 = Dynamic|x64 + {A710033C-F75A-4431-96AA-876A9867A2F8}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {A710033C-F75A-4431-96AA-876A9867A2F8}.Dynamic|x86.Build.0 = Dynamic|Win32 + {44716561-6BA7-40DA-AE7F-F3FFB422E86D}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {44716561-6BA7-40DA-AE7F-F3FFB422E86D}.Dynamic|x64.Build.0 = Dynamic|x64 + {44716561-6BA7-40DA-AE7F-F3FFB422E86D}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {44716561-6BA7-40DA-AE7F-F3FFB422E86D}.Dynamic|x86.Build.0 = Dynamic|Win32 + {0C96EF73-186D-4888-BB53-EECE60B55647}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {0C96EF73-186D-4888-BB53-EECE60B55647}.Dynamic|x64.Build.0 = Dynamic|x64 + {0C96EF73-186D-4888-BB53-EECE60B55647}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {0C96EF73-186D-4888-BB53-EECE60B55647}.Dynamic|x86.Build.0 = Dynamic|Win32 + {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic|x64.Build.0 = Dynamic|x64 + {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic|x86.Build.0 = Dynamic|Win32 + {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic|x64.Build.0 = Dynamic|x64 + {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic|x86.Build.0 = Dynamic|Win32 + {8DA8A9E2-9987-4B68-9825-45C445C52730}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {8DA8A9E2-9987-4B68-9825-45C445C52730}.Dynamic|x64.Build.0 = Dynamic|x64 + {8DA8A9E2-9987-4B68-9825-45C445C52730}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {8DA8A9E2-9987-4B68-9825-45C445C52730}.Dynamic|x86.Build.0 = Dynamic|Win32 + {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic|x64.Build.0 = Dynamic|x64 + {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic|x86.Build.0 = Dynamic|Win32 + {14AB1B79-6F57-43EB-A5EA-B9B117B659B4}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {14AB1B79-6F57-43EB-A5EA-B9B117B659B4}.Dynamic|x64.Build.0 = Dynamic|x64 + {14AB1B79-6F57-43EB-A5EA-B9B117B659B4}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {14AB1B79-6F57-43EB-A5EA-B9B117B659B4}.Dynamic|x86.Build.0 = Dynamic|Win32 + {745D6455-7389-4C76-8275-D91F7451E0FA}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {745D6455-7389-4C76-8275-D91F7451E0FA}.Dynamic|x64.Build.0 = Dynamic|x64 + {745D6455-7389-4C76-8275-D91F7451E0FA}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {745D6455-7389-4C76-8275-D91F7451E0FA}.Dynamic|x86.Build.0 = Dynamic|Win32 + {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic|x64.Build.0 = Dynamic|x64 + {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic|x86.Build.0 = Dynamic|Win32 + {3C9B64A2-6676-4A60-A805-15301A18C550}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {3C9B64A2-6676-4A60-A805-15301A18C550}.Dynamic|x64.Build.0 = Dynamic|x64 + {3C9B64A2-6676-4A60-A805-15301A18C550}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {3C9B64A2-6676-4A60-A805-15301A18C550}.Dynamic|x86.Build.0 = Dynamic|Win32 + {FEF2FD72-388B-42F6-B5DA-B9A663ACF557}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {FEF2FD72-388B-42F6-B5DA-B9A663ACF557}.Dynamic|x64.Build.0 = Dynamic|x64 + {FEF2FD72-388B-42F6-B5DA-B9A663ACF557}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {FEF2FD72-388B-42F6-B5DA-B9A663ACF557}.Dynamic|x86.Build.0 = Dynamic|Win32 + {AA2EA361-4793-4FF7-A042-40E271030CC4}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {AA2EA361-4793-4FF7-A042-40E271030CC4}.Dynamic|x64.Build.0 = Dynamic|x64 + {AA2EA361-4793-4FF7-A042-40E271030CC4}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {AA2EA361-4793-4FF7-A042-40E271030CC4}.Dynamic|x86.Build.0 = Dynamic|Win32 + {9B6F843F-A792-466D-98E3-A3921525AFF5}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {9B6F843F-A792-466D-98E3-A3921525AFF5}.Dynamic|x64.Build.0 = Dynamic|x64 + {9B6F843F-A792-466D-98E3-A3921525AFF5}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {9B6F843F-A792-466D-98E3-A3921525AFF5}.Dynamic|x86.Build.0 = Dynamic|Win32 + {2885B86D-9DDA-460C-9FB8-41B005F15349}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {2885B86D-9DDA-460C-9FB8-41B005F15349}.Dynamic|x64.Build.0 = Dynamic|x64 + {2885B86D-9DDA-460C-9FB8-41B005F15349}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {2885B86D-9DDA-460C-9FB8-41B005F15349}.Dynamic|x86.Build.0 = Dynamic|Win32 + {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic|x64.Build.0 = Dynamic|x64 + {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic|x86.Build.0 = Dynamic|Win32 + {A989B752-28A2-44E7-8C19-F49C7ECD61DC}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {A989B752-28A2-44E7-8C19-F49C7ECD61DC}.Dynamic|x64.Build.0 = Dynamic|x64 + {A989B752-28A2-44E7-8C19-F49C7ECD61DC}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {A989B752-28A2-44E7-8C19-F49C7ECD61DC}.Dynamic|x86.Build.0 = Dynamic|Win32 + {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}.Dynamic|x64.Build.0 = Dynamic|x64 + {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}.Dynamic|x86.Build.0 = Dynamic|Win32 + {C7F4CB73-7D57-4077-9C04-931A6CB0677D}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {C7F4CB73-7D57-4077-9C04-931A6CB0677D}.Dynamic|x64.Build.0 = Dynamic|x64 + {C7F4CB73-7D57-4077-9C04-931A6CB0677D}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {C7F4CB73-7D57-4077-9C04-931A6CB0677D}.Dynamic|x86.Build.0 = Dynamic|Win32 + {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}.Dynamic|x64.Build.0 = Dynamic|x64 + {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}.Dynamic|x86.Build.0 = Dynamic|Win32 + {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic|x64.Build.0 = Dynamic|x64 + {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic|x86.Build.0 = Dynamic|Win32 + {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}.Dynamic|x64.Build.0 = Dynamic|x64 + {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}.Dynamic|x86.Build.0 = Dynamic|Win32 + {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}.Dynamic|x64.Build.0 = Dynamic|x64 + {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}.Dynamic|x86.Build.0 = Dynamic|Win32 + {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic|x64.Build.0 = Dynamic|x64 + {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic|x86.Build.0 = Dynamic|Win32 + {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}.Dynamic|x64.Build.0 = Dynamic|x64 + {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}.Dynamic|x86.Build.0 = Dynamic|Win32 + {DB748474-ADA6-4AEB-8694-F02088D88AD7}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {DB748474-ADA6-4AEB-8694-F02088D88AD7}.Dynamic|x64.Build.0 = Dynamic|x64 + {DB748474-ADA6-4AEB-8694-F02088D88AD7}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {DB748474-ADA6-4AEB-8694-F02088D88AD7}.Dynamic|x86.Build.0 = Dynamic|Win32 + {583840C9-525A-4417-866C-6197EBC12214}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {583840C9-525A-4417-866C-6197EBC12214}.Dynamic|x64.Build.0 = Dynamic|x64 + {583840C9-525A-4417-866C-6197EBC12214}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {583840C9-525A-4417-866C-6197EBC12214}.Dynamic|x86.Build.0 = Dynamic|Win32 + {6191AA5F-75C1-4448-9CE1-E5DED284501B}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {6191AA5F-75C1-4448-9CE1-E5DED284501B}.Dynamic|x64.Build.0 = Dynamic|x64 + {6191AA5F-75C1-4448-9CE1-E5DED284501B}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {6191AA5F-75C1-4448-9CE1-E5DED284501B}.Dynamic|x86.Build.0 = Dynamic|Win32 + {76FA1CA3-FC3D-45D2-86A8-B068F551652F}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {76FA1CA3-FC3D-45D2-86A8-B068F551652F}.Dynamic|x64.Build.0 = Dynamic|x64 + {76FA1CA3-FC3D-45D2-86A8-B068F551652F}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {76FA1CA3-FC3D-45D2-86A8-B068F551652F}.Dynamic|x86.Build.0 = Dynamic|Win32 + {E5EF62C7-377D-4B61-8244-CC4F8555F733}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {E5EF62C7-377D-4B61-8244-CC4F8555F733}.Dynamic|x64.Build.0 = Dynamic|x64 + {E5EF62C7-377D-4B61-8244-CC4F8555F733}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {E5EF62C7-377D-4B61-8244-CC4F8555F733}.Dynamic|x86.Build.0 = Dynamic|Win32 + {3DCA40EE-0C42-4D51-996F-EF2D3E599738}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {3DCA40EE-0C42-4D51-996F-EF2D3E599738}.Dynamic|x64.Build.0 = Dynamic|x64 + {3DCA40EE-0C42-4D51-996F-EF2D3E599738}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {3DCA40EE-0C42-4D51-996F-EF2D3E599738}.Dynamic|x86.Build.0 = Dynamic|Win32 + {5E420537-E1A9-4004-BBDC-F2853AAD5485}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {5E420537-E1A9-4004-BBDC-F2853AAD5485}.Dynamic|x64.Build.0 = Dynamic|x64 + {5E420537-E1A9-4004-BBDC-F2853AAD5485}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {5E420537-E1A9-4004-BBDC-F2853AAD5485}.Dynamic|x86.Build.0 = Dynamic|Win32 + {EAEEB94B-AA03-4E8D-8135-D02D22FBD422}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {EAEEB94B-AA03-4E8D-8135-D02D22FBD422}.Dynamic|x64.Build.0 = Dynamic|x64 + {EAEEB94B-AA03-4E8D-8135-D02D22FBD422}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {EAEEB94B-AA03-4E8D-8135-D02D22FBD422}.Dynamic|x86.Build.0 = Dynamic|Win32 + {67E3DA3B-6DA6-4948-BA97-3C2519F4DCC6}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {67E3DA3B-6DA6-4948-BA97-3C2519F4DCC6}.Dynamic|x64.Build.0 = Dynamic|x64 + {67E3DA3B-6DA6-4948-BA97-3C2519F4DCC6}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {67E3DA3B-6DA6-4948-BA97-3C2519F4DCC6}.Dynamic|x86.Build.0 = Dynamic|Win32 + {8104E8D8-7343-4BE7-8955-80A1F2D26EC2}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {8104E8D8-7343-4BE7-8955-80A1F2D26EC2}.Dynamic|x64.Build.0 = Dynamic|x64 + {8104E8D8-7343-4BE7-8955-80A1F2D26EC2}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {8104E8D8-7343-4BE7-8955-80A1F2D26EC2}.Dynamic|x86.Build.0 = Dynamic|Win32 + {7DB64944-4784-4F40-9F87-98B8BC623854}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {7DB64944-4784-4F40-9F87-98B8BC623854}.Dynamic|x64.Build.0 = Dynamic|x64 + {7DB64944-4784-4F40-9F87-98B8BC623854}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {7DB64944-4784-4F40-9F87-98B8BC623854}.Dynamic|x86.Build.0 = Dynamic|Win32 + {D0CFB304-1B97-4C5E-AF66-35A223DDB14B}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {D0CFB304-1B97-4C5E-AF66-35A223DDB14B}.Dynamic|x64.Build.0 = Dynamic|x64 + {D0CFB304-1B97-4C5E-AF66-35A223DDB14B}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {D0CFB304-1B97-4C5E-AF66-35A223DDB14B}.Dynamic|x86.Build.0 = Dynamic|Win32 + {E32658C1-CD24-40DC-8912-C7D3FE803FC1}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {E32658C1-CD24-40DC-8912-C7D3FE803FC1}.Dynamic|x64.Build.0 = Dynamic|x64 + {E32658C1-CD24-40DC-8912-C7D3FE803FC1}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {E32658C1-CD24-40DC-8912-C7D3FE803FC1}.Dynamic|x86.Build.0 = Dynamic|Win32 + {2A1AEDDB-5ED3-4CA7-8E2D-B0178131397F}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {2A1AEDDB-5ED3-4CA7-8E2D-B0178131397F}.Dynamic|x64.Build.0 = Dynamic|x64 + {2A1AEDDB-5ED3-4CA7-8E2D-B0178131397F}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {2A1AEDDB-5ED3-4CA7-8E2D-B0178131397F}.Dynamic|x86.Build.0 = Dynamic|Win32 + {631B7B35-DF4B-480A-A61E-F6693403FE5E}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {631B7B35-DF4B-480A-A61E-F6693403FE5E}.Dynamic|x64.Build.0 = Dynamic|x64 + {631B7B35-DF4B-480A-A61E-F6693403FE5E}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {631B7B35-DF4B-480A-A61E-F6693403FE5E}.Dynamic|x86.Build.0 = Dynamic|Win32 + {F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}.Dynamic|x64.Build.0 = Dynamic|x64 + {F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}.Dynamic|x86.Build.0 = Dynamic|Win32 + {246A71D1-8AD2-46A1-B04D-8EEF78036F27}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {246A71D1-8AD2-46A1-B04D-8EEF78036F27}.Dynamic|x64.Build.0 = Dynamic|x64 + {246A71D1-8AD2-46A1-B04D-8EEF78036F27}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {246A71D1-8AD2-46A1-B04D-8EEF78036F27}.Dynamic|x86.Build.0 = Dynamic|Win32 + {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}.Dynamic|x64.ActiveCfg = Dynamic|x64 + {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}.Dynamic|x64.Build.0 = Dynamic|x64 + {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}.Dynamic|x86.ActiveCfg = Dynamic|Win32 + {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}.Dynamic|x86.Build.0 = Dynamic|Win32 EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE EndGlobalSection GlobalSection(DevPartner) = postSolution EndGlobalSection diff --git a/lang/lang_vc71.sln b/lang/lang_vc71.sln deleted file mode 100644 index a5d190e3..00000000 --- a/lang/lang_vc71.sln +++ /dev/null @@ -1,282 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Arabic (UAE)", "ar_AE_vc71.vcproj", "{A710033C-F75A-4431-96AA-876A9867A2F8}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Bulgarian", "bg_BG_vc71.vcproj", "{44716561-6BA7-40DA-AE7F-F3FFB422E86D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Catalan", "ca_ES_vc71.vcproj", "{0C96EF73-186D-4888-BB53-EECE60B55647}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Danish", "da_DK_vc71.vcproj", "{0C42D310-84EB-462F-944B-7166C0D071E9}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - German (Germany)", "de_DE_vc71.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Greek", "el_GR_vc71.vcproj", "{8DA8A9E2-9987-4B68-9825-45C445C52730}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Spanish (Castilian)", "es_ES_T_vc71.vcproj", "{B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Estonian", "et_EE_vc71.vcproj", "{14AB1B79-6F57-43EB-A5EA-B9B117B659B4}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Finnish", "fi_FI_vc71.vcproj", "{745D6455-7389-4C76-8275-D91F7451E0FA}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - French (France)", "fr_FR_vc71.vcproj", "{A7E4E792-AA76-4977-A725-1C428AADE381}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Hungarian", "hu_HU_vc71.vcproj", "{3C9B64A2-6676-4A60-A805-15301A18C550}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Italian (Italy)", "it_IT_vc71.vcproj", "{FEF2FD72-388B-42F6-B5DA-B9A663ACF557}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Korean", "ko_KR_vc71.vcproj", "{AA2EA361-4793-4FF7-A042-40E271030CC4}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Lithuanian", "lt_LT_vc71.vcproj", "{9B6F843F-A792-466D-98E3-A3921525AFF5}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Latvian", "lv_LV_vc71.vcproj", "{2885B86D-9DDA-460C-9FB8-41B005F15349}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Norwegian (Bokmal)", "nb_NO_vc71.vcproj", "{DE470764-A818-4780-B590-78EB8D560E89}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Dutch (Netherlands)", "nl_NL_vc71.vcproj", "{A989B752-28A2-44E7-8C19-F49C7ECD61DC}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Polish", "pl_PL_vc71.vcproj", "{57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Portuguese (Brazil)", "pt_BR_vc71.vcproj", "{C7F4CB73-7D57-4077-9C04-931A6CB0677D}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Portuguese (Portugal)", "pt_PT_vc71.vcproj", "{64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Russian", "ru_RU_vc71.vcproj", "{4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Slovenian", "sl_SI_vc71.vcproj", "{F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Swedish", "sv_SE_vc71.vcproj", "{2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Turkish", "tr_TR_vc71.vcproj", "{EFE9605D-BF5C-4339-9A5A-32184D4BD03C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Chinese (P.R.C.)", "zh_CN_vc71.vcproj", "{BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Chinese (Taiwan)", "zh_TW_vc71.vcproj", "{DB748474-ADA6-4AEB-8694-F02088D88AD7}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Galician", "gl_ES_vc71.vcproj", "{583840C9-525A-4417-866C-6197EBC12214}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Hebrew (Israel)", "he_IL_vc71.vcproj", "{A7E4E792-AA76-4977-A725-1C428AADE381}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Japanese", "jp_JP_vc71.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Czech", "cz_CZ_vc71.vcproj", "{0C42D310-84EB-462F-944B-7166C0D071E9}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Romania", "ro_RO_vc71.vcproj", "{4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - French (Breton)", "fr_BR_vc71.vcproj", "{A7E4E792-AA76-4977-A725-1C428AADE381}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Basque", "ba_BA_vc71.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Norwegian (Nynorsk)", "nn_NO_vc71.vcproj", "{DE470764-A818-4780-B590-78EB8D560E89}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Albanian (Albania)", "sq_AL_vc71.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC2}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Ukrainian", "ua_UA_vc71.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Maltese", "mt_MT_vc71.vcproj", "{EFE9605D-BF5C-4339-9A5A-32184D4BD03C}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Asturian", "es_AS_vc71.vcproj", "{B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Vietnamese", "vi_VN_vc71.vcproj", "{8104E8D8-7343-4BE7-8955-80A1F2D26EC1}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Valencian", "va_ES_vc71.vcproj", "{631B7B35-DF4B-480A-A61E-F6693403FE5E}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Farsi", "fa_IR_vc71.vcproj", "{F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Uighur (PRC)", "ug_CN_vc71.vcproj", "{246A71D1-8AD2-46A1-B04D-8EEF78036F27}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "languages - Valencian (RACV)", "va_ES_RACV.vcproj", "{506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Dynamic = Dynamic - EndGlobalSection - GlobalSection(ProjectDependencies) = postSolution - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {A710033C-F75A-4431-96AA-876A9867A2F8}.Dynamic.ActiveCfg = Dynamic|Win32 - {A710033C-F75A-4431-96AA-876A9867A2F8}.Dynamic.Build.0 = Dynamic|Win32 - {44716561-6BA7-40DA-AE7F-F3FFB422E86D}.Dynamic.ActiveCfg = Dynamic|Win32 - {44716561-6BA7-40DA-AE7F-F3FFB422E86D}.Dynamic.Build.0 = Dynamic|Win32 - {0C96EF73-186D-4888-BB53-EECE60B55647}.Dynamic.ActiveCfg = Dynamic|Win32 - {0C96EF73-186D-4888-BB53-EECE60B55647}.Dynamic.Build.0 = Dynamic|Win32 - {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic.ActiveCfg = Dynamic|Win32 - {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {8DA8A9E2-9987-4B68-9825-45C445C52730}.Dynamic.ActiveCfg = Dynamic|Win32 - {8DA8A9E2-9987-4B68-9825-45C445C52730}.Dynamic.Build.0 = Dynamic|Win32 - {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic.ActiveCfg = Dynamic|Win32 - {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic.Build.0 = Dynamic|Win32 - {14AB1B79-6F57-43EB-A5EA-B9B117B659B4}.Dynamic.ActiveCfg = Dynamic|Win32 - {14AB1B79-6F57-43EB-A5EA-B9B117B659B4}.Dynamic.Build.0 = Dynamic|Win32 - {745D6455-7389-4C76-8275-D91F7451E0FA}.Dynamic.ActiveCfg = Dynamic|Win32 - {745D6455-7389-4C76-8275-D91F7451E0FA}.Dynamic.Build.0 = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.ActiveCfg = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.Build.0 = Dynamic|Win32 - {3C9B64A2-6676-4A60-A805-15301A18C550}.Dynamic.ActiveCfg = Dynamic|Win32 - {3C9B64A2-6676-4A60-A805-15301A18C550}.Dynamic.Build.0 = Dynamic|Win32 - {FEF2FD72-388B-42F6-B5DA-B9A663ACF557}.Dynamic.ActiveCfg = Dynamic|Win32 - {FEF2FD72-388B-42F6-B5DA-B9A663ACF557}.Dynamic.Build.0 = Dynamic|Win32 - {AA2EA361-4793-4FF7-A042-40E271030CC4}.Dynamic.ActiveCfg = Dynamic|Win32 - {AA2EA361-4793-4FF7-A042-40E271030CC4}.Dynamic.Build.0 = Dynamic|Win32 - {9B6F843F-A792-466D-98E3-A3921525AFF5}.Dynamic.ActiveCfg = Dynamic|Win32 - {9B6F843F-A792-466D-98E3-A3921525AFF5}.Dynamic.Build.0 = Dynamic|Win32 - {2885B86D-9DDA-460C-9FB8-41B005F15349}.Dynamic.ActiveCfg = Dynamic|Win32 - {2885B86D-9DDA-460C-9FB8-41B005F15349}.Dynamic.Build.0 = Dynamic|Win32 - {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic.ActiveCfg = Dynamic|Win32 - {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic.Build.0 = Dynamic|Win32 - {A989B752-28A2-44E7-8C19-F49C7ECD61DC}.Dynamic.ActiveCfg = Dynamic|Win32 - {A989B752-28A2-44E7-8C19-F49C7ECD61DC}.Dynamic.Build.0 = Dynamic|Win32 - {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}.Dynamic.ActiveCfg = Dynamic|Win32 - {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6}.Dynamic.Build.0 = Dynamic|Win32 - {C7F4CB73-7D57-4077-9C04-931A6CB0677D}.Dynamic.ActiveCfg = Dynamic|Win32 - {C7F4CB73-7D57-4077-9C04-931A6CB0677D}.Dynamic.Build.0 = Dynamic|Win32 - {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}.Dynamic.ActiveCfg = Dynamic|Win32 - {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2}.Dynamic.Build.0 = Dynamic|Win32 - {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic.ActiveCfg = Dynamic|Win32 - {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic.Build.0 = Dynamic|Win32 - {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}.Dynamic.ActiveCfg = Dynamic|Win32 - {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632}.Dynamic.Build.0 = Dynamic|Win32 - {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}.Dynamic.ActiveCfg = Dynamic|Win32 - {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE}.Dynamic.Build.0 = Dynamic|Win32 - {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic.ActiveCfg = Dynamic|Win32 - {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic.Build.0 = Dynamic|Win32 - {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}.Dynamic.ActiveCfg = Dynamic|Win32 - {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782}.Dynamic.Build.0 = Dynamic|Win32 - {DB748474-ADA6-4AEB-8694-F02088D88AD7}.Dynamic.ActiveCfg = Dynamic|Win32 - {DB748474-ADA6-4AEB-8694-F02088D88AD7}.Dynamic.Build.0 = Dynamic|Win32 - {583840C9-525A-4417-866C-6197EBC12214}.Dynamic.ActiveCfg = Dynamic|Win32 - {583840C9-525A-4417-866C-6197EBC12214}.Dynamic.Build.0 = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.ActiveCfg = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic.ActiveCfg = Dynamic|Win32 - {0C42D310-84EB-462F-944B-7166C0D071E9}.Dynamic.Build.0 = Dynamic|Win32 - {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic.ActiveCfg = Dynamic|Win32 - {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449}.Dynamic.Build.0 = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.ActiveCfg = Dynamic|Win32 - {A7E4E792-AA76-4977-A725-1C428AADE381}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic.ActiveCfg = Dynamic|Win32 - {DE470764-A818-4780-B590-78EB8D560E89}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC2}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC2}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic.ActiveCfg = Dynamic|Win32 - {EFE9605D-BF5C-4339-9A5A-32184D4BD03C}.Dynamic.Build.0 = Dynamic|Win32 - {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic.ActiveCfg = Dynamic|Win32 - {B0DAEE35-FD0F-4FAF-A7C1-3D52103B3E81}.Dynamic.Build.0 = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {8104E8D8-7343-4BE7-8955-80A1F2D26EC1}.Dynamic.Build.0 = Dynamic|Win32 - {631B7B35-DF4B-480A-A61E-F6693403FE5E}.Dynamic.ActiveCfg = Dynamic|Win32 - {631B7B35-DF4B-480A-A61E-F6693403FE5E}.Dynamic.Build.0 = Dynamic|Win32 - {F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}.Dynamic.ActiveCfg = Dynamic|Win32 - {F2ED1274-6DA7-4F08-B9C8-1915409EAEC1}.Dynamic.Build.0 = Dynamic|Win32 - {246A71D1-8AD2-46A1-B04D-8EEF78036F27}.Dynamic.ActiveCfg = Dynamic|Win32 - {246A71D1-8AD2-46A1-B04D-8EEF78036F27}.Dynamic.Build.0 = Dynamic|Win32 - {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}.Dynamic.ActiveCfg = Dynamic|Win32 - {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A}.Dynamic.Build.0 = Dynamic|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection - GlobalSection(DevPartner) = postSolution - EndGlobalSection - GlobalSection(DevPartner) = postSolution - EndGlobalSection - GlobalSection(DevPartner) = postSolution - EndGlobalSection - GlobalSection(DevPartner) = postSolution - EndGlobalSection - GlobalSection(DevPartner) = postSolution - EndGlobalSection -EndGlobal diff --git a/lang/lt_LT.vcproj b/lang/lt_LT.vcproj deleted file mode 100644 index de59b9a6..00000000 --- a/lang/lt_LT.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/lt_LT.vcxproj b/lang/lt_LT.vcxproj new file mode 100644 index 00000000..615542b5 --- /dev/null +++ b/lang/lt_LT.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Lithuanian + {9B6F843F-A792-466D-98E3-A3921525AFF5} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)lt_LT.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)lt_LT.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/lt_LT_vc71.vcproj b/lang/lt_LT_vc71.vcproj deleted file mode 100644 index ca7b0443..00000000 --- a/lang/lt_LT_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/lv_LV.vcproj b/lang/lv_LV.vcproj deleted file mode 100644 index a0c228da..00000000 --- a/lang/lv_LV.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/lv_LV.vcxproj b/lang/lv_LV.vcxproj new file mode 100644 index 00000000..74d388eb --- /dev/null +++ b/lang/lv_LV.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Latvian + {2885B86D-9DDA-460C-9FB8-41B005F15349} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)lv_LV.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)lv_LV.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/lv_LV_vc71.vcproj b/lang/lv_LV_vc71.vcproj deleted file mode 100644 index ecd5c41d..00000000 --- a/lang/lv_LV_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/mt_MT.rc b/lang/mt_MT.rc index 9954a4ff..8e950dcc 100644 Binary files a/lang/mt_MT.rc and b/lang/mt_MT.rc differ diff --git a/lang/mt_MT.vcproj b/lang/mt_MT.vcproj deleted file mode 100644 index 10120587..00000000 --- a/lang/mt_MT.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/mt_MT.vcxproj b/lang/mt_MT.vcxproj new file mode 100644 index 00000000..db3fd403 --- /dev/null +++ b/lang/mt_MT.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Maltese + {D0CFB304-1B97-4C5E-AF66-35A223DDB14B} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)mt_MT.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)mt_MT.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/mt_MT_vc71.vcproj b/lang/mt_MT_vc71.vcproj deleted file mode 100644 index be5b7e7e..00000000 --- a/lang/mt_MT_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/nb_NO.vcproj b/lang/nb_NO.vcproj deleted file mode 100644 index 634267b2..00000000 --- a/lang/nb_NO.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/nb_NO.vcxproj b/lang/nb_NO.vcxproj new file mode 100644 index 00000000..692ff1f6 --- /dev/null +++ b/lang/nb_NO.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Norwegian (Bokmal) + {DE470764-A818-4780-B590-78EB8D560E89} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)nb_NO.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)nb_NO.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/nb_NO_vc71.vcproj b/lang/nb_NO_vc71.vcproj deleted file mode 100644 index 3ad20558..00000000 --- a/lang/nb_NO_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/nl_NL.vcproj b/lang/nl_NL.vcproj deleted file mode 100644 index 03899a5f..00000000 --- a/lang/nl_NL.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/nl_NL.vcxproj b/lang/nl_NL.vcxproj new file mode 100644 index 00000000..4c609a02 --- /dev/null +++ b/lang/nl_NL.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Dutch (Netherlands) + {A989B752-28A2-44E7-8C19-F49C7ECD61DC} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)nl_NL.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)nl_NL.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/nl_NL_vc71.vcproj b/lang/nl_NL_vc71.vcproj deleted file mode 100644 index 60021771..00000000 --- a/lang/nl_NL_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/nn_NO.vcproj b/lang/nn_NO.vcproj deleted file mode 100644 index 077e384a..00000000 --- a/lang/nn_NO.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/nn_NO.vcxproj b/lang/nn_NO.vcxproj new file mode 100644 index 00000000..0d5acaaa --- /dev/null +++ b/lang/nn_NO.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Norwegian (Nynorsk) + {67E3DA3B-6DA6-4948-BA97-3C2519F4DCC6} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)nn_NO.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)nn_NO.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/nn_NO_vc71.vcproj b/lang/nn_NO_vc71.vcproj deleted file mode 100644 index 3181bace..00000000 --- a/lang/nn_NO_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/pl_PL.vcproj b/lang/pl_PL.vcproj deleted file mode 100644 index 8901970b..00000000 --- a/lang/pl_PL.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/pl_PL.vcxproj b/lang/pl_PL.vcxproj new file mode 100644 index 00000000..004ed84c --- /dev/null +++ b/lang/pl_PL.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Polish + {57E9C9FF-E57F-46E0-823A-38DD76FEEBC6} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)pl_PL.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)pl_PL.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/pl_PL_vc71.vcproj b/lang/pl_PL_vc71.vcproj deleted file mode 100644 index 75225e19..00000000 --- a/lang/pl_PL_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/pt_BR.vcproj b/lang/pt_BR.vcproj deleted file mode 100644 index 70ca12b6..00000000 --- a/lang/pt_BR.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/pt_BR.vcxproj b/lang/pt_BR.vcxproj new file mode 100644 index 00000000..6349b307 --- /dev/null +++ b/lang/pt_BR.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Portuguese (Brazil) + {C7F4CB73-7D57-4077-9C04-931A6CB0677D} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)pt_BR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)pt_BR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/pt_BR_vc71.vcproj b/lang/pt_BR_vc71.vcproj deleted file mode 100644 index 90c1b737..00000000 --- a/lang/pt_BR_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/pt_PT.vcproj b/lang/pt_PT.vcproj deleted file mode 100644 index 7598f16f..00000000 --- a/lang/pt_PT.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/pt_PT.vcxproj b/lang/pt_PT.vcxproj new file mode 100644 index 00000000..17b76780 --- /dev/null +++ b/lang/pt_PT.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Portuguese (Portugal) + {64DFFE85-14E0-41D7-ADFA-7D53EE81D1B2} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)pt_PT.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)pt_PT.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/pt_PT_vc71.vcproj b/lang/pt_PT_vc71.vcproj deleted file mode 100644 index 3fae34fa..00000000 --- a/lang/pt_PT_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ro_RO.vcproj b/lang/ro_RO.vcproj deleted file mode 100644 index c74ff6e8..00000000 --- a/lang/ro_RO.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ro_RO.vcxproj b/lang/ro_RO.vcxproj new file mode 100644 index 00000000..d418614d --- /dev/null +++ b/lang/ro_RO.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Romania + {3DCA40EE-0C42-4D51-996F-EF2D3E599738} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)ro_RO.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\Debug\lang md ..\Debug\lang +copy "$(TargetPath)" ..\Debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)ro_RO.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\Debug\lang md ..\Debug\lang +copy "$(TargetPath)" ..\Debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/ro_RO_vc71.vcproj b/lang/ro_RO_vc71.vcproj deleted file mode 100644 index 0960e637..00000000 --- a/lang/ro_RO_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ru_RU.vcproj b/lang/ru_RU.vcproj deleted file mode 100644 index 2bd21c75..00000000 --- a/lang/ru_RU.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ru_RU.vcxproj b/lang/ru_RU.vcxproj new file mode 100644 index 00000000..c8088078 --- /dev/null +++ b/lang/ru_RU.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Russian + {4AE4AB3A-FD80-4DFE-BF9B-AC845DCF2449} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)ru_RU.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)ru_RU.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/ru_RU_vc71.vcproj b/lang/ru_RU_vc71.vcproj deleted file mode 100644 index cdd28e89..00000000 --- a/lang/ru_RU_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/sl_SI.vcproj b/lang/sl_SI.vcproj deleted file mode 100644 index 8192d323..00000000 --- a/lang/sl_SI.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/sl_SI.vcxproj b/lang/sl_SI.vcxproj new file mode 100644 index 00000000..4fcc0dc4 --- /dev/null +++ b/lang/sl_SI.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Slovenian + {F8A9B7BC-3CBB-4DEC-A04E-5224A65A6632} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)sl_SI.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)sl_SI.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/sl_SI_vc71.vcproj b/lang/sl_SI_vc71.vcproj deleted file mode 100644 index 4211ae98..00000000 --- a/lang/sl_SI_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/sq_AL.vcproj b/lang/sq_AL.vcproj deleted file mode 100644 index c950950b..00000000 --- a/lang/sq_AL.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/sq_AL.vcxproj b/lang/sq_AL.vcxproj new file mode 100644 index 00000000..131f8750 --- /dev/null +++ b/lang/sq_AL.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Albanian (Albania) + {8104E8D8-7343-4BE7-8955-80A1F2D26EC2} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)sq_AL.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)sq_AL.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/sq_AL_vc71.vcproj b/lang/sq_AL_vc71.vcproj deleted file mode 100644 index ba22d2b9..00000000 --- a/lang/sq_AL_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/sv_SE.vcproj b/lang/sv_SE.vcproj deleted file mode 100644 index 4d7c1858..00000000 --- a/lang/sv_SE.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/sv_SE.vcxproj b/lang/sv_SE.vcxproj new file mode 100644 index 00000000..7c8feedf --- /dev/null +++ b/lang/sv_SE.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Swedish + {2AECAA37-18C5-4C04-8E34-3E6EDCD926AE} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)sv_SE.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)sv_SE.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/sv_SE_vc71.vcproj b/lang/sv_SE_vc71.vcproj deleted file mode 100644 index a95d76fa..00000000 --- a/lang/sv_SE_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/tr_TR.vcproj b/lang/tr_TR.vcproj deleted file mode 100644 index bfe0bc71..00000000 --- a/lang/tr_TR.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/tr_TR.vcxproj b/lang/tr_TR.vcxproj new file mode 100644 index 00000000..1a73b2a0 --- /dev/null +++ b/lang/tr_TR.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Turkish + {EFE9605D-BF5C-4339-9A5A-32184D4BD03C} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)tr_TR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)tr_TR.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/tr_TR_vc71.vcproj b/lang/tr_TR_vc71.vcproj deleted file mode 100644 index 1f00de2e..00000000 --- a/lang/tr_TR_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ua_UA.vcproj b/lang/ua_UA.vcproj deleted file mode 100644 index 5ea074d8..00000000 --- a/lang/ua_UA.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ua_UA.vcxproj b/lang/ua_UA.vcxproj new file mode 100644 index 00000000..85c0364f --- /dev/null +++ b/lang/ua_UA.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Ukrainian + {7DB64944-4784-4F40-9F87-98B8BC623854} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)ua_UA.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)ua_UA.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/ua_UA_vc71.vcproj b/lang/ua_UA_vc71.vcproj deleted file mode 100644 index b4e7434a..00000000 --- a/lang/ua_UA_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ug_CN.rc b/lang/ug_CN.rc index 35aa5b23..035f93dc 100644 Binary files a/lang/ug_CN.rc and b/lang/ug_CN.rc differ diff --git a/lang/ug_CN.vcproj b/lang/ug_CN.vcproj deleted file mode 100644 index 346cd465..00000000 --- a/lang/ug_CN.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/ug_CN.vcxproj b/lang/ug_CN.vcxproj new file mode 100644 index 00000000..30ea6dbe --- /dev/null +++ b/lang/ug_CN.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Uighur (PRC) + {246A71D1-8AD2-46A1-B04D-8EEF78036F27} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)ug_CN.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)ug_CN.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/ug_CN_vc71.vcproj b/lang/ug_CN_vc71.vcproj deleted file mode 100644 index 65a1e005..00000000 --- a/lang/ug_CN_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/va_ES.vcproj b/lang/va_ES.vcproj deleted file mode 100644 index 60b5e836..00000000 --- a/lang/va_ES.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/va_ES.vcxproj b/lang/va_ES.vcxproj new file mode 100644 index 00000000..830d83f3 --- /dev/null +++ b/lang/va_ES.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Valencian + {631B7B35-DF4B-480A-A61E-F6693403FE5E} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)va_ES.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)va_ES.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/va_ES_RACV.vcproj b/lang/va_ES_RACV.vcproj deleted file mode 100644 index b78360dd..00000000 --- a/lang/va_ES_RACV.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/va_ES_RACV.vcxproj b/lang/va_ES_RACV.vcxproj new file mode 100644 index 00000000..76c14229 --- /dev/null +++ b/lang/va_ES_RACV.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Valencian (RACV) + {506A62DC-BB66-4686-BCBE-E1BBB0B1E27A} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)va_ES_RACV.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)va_ES_RACV.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/va_ES_RACV_vc71.vcproj b/lang/va_ES_RACV_vc71.vcproj deleted file mode 100644 index b78360dd..00000000 --- a/lang/va_ES_RACV_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/va_ES_vc71.vcproj b/lang/va_ES_vc71.vcproj deleted file mode 100644 index 9b647f63..00000000 --- a/lang/va_ES_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/vi_VN.rc b/lang/vi_VN.rc index 98fbe55a..c3946a9b 100644 Binary files a/lang/vi_VN.rc and b/lang/vi_VN.rc differ diff --git a/lang/vi_VN.vcproj b/lang/vi_VN.vcproj deleted file mode 100644 index 8dd357ec..00000000 --- a/lang/vi_VN.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/vi_VN.vcxproj b/lang/vi_VN.vcxproj new file mode 100644 index 00000000..e5e952d2 --- /dev/null +++ b/lang/vi_VN.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Vietnamese + {2A1AEDDB-5ED3-4CA7-8E2D-B0178131397F} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)vi_VN.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)vi_VN.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/vi_VN_vc71.vcproj b/lang/vi_VN_vc71.vcproj deleted file mode 100644 index c3197edd..00000000 --- a/lang/vi_VN_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/zh_CN.vcproj b/lang/zh_CN.vcproj deleted file mode 100644 index 6316c2ee..00000000 --- a/lang/zh_CN.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/zh_CN.vcxproj b/lang/zh_CN.vcxproj new file mode 100644 index 00000000..60a4d378 --- /dev/null +++ b/lang/zh_CN.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Chinese (P.R.C.) + {BFCEE1BE-5DC9-4CDF-B55E-6DEDFC4FF782} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)zh_CN.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)zh_CN.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/zh_CN_vc71.vcproj b/lang/zh_CN_vc71.vcproj deleted file mode 100644 index 3a753b67..00000000 --- a/lang/zh_CN_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/zh_TW.vcproj b/lang/zh_TW.vcproj deleted file mode 100644 index f23934d5..00000000 --- a/lang/zh_TW.vcproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lang/zh_TW.vcxproj b/lang/zh_TW.vcxproj new file mode 100644 index 00000000..469727a2 --- /dev/null +++ b/lang/zh_TW.vcxproj @@ -0,0 +1,104 @@ + + + + + Dynamic + Win32 + + + Dynamic + x64 + + + + languages - Chinese (Taiwan) + {DB748474-ADA6-4AEB-8694-F02088D88AD7} + Win32Proj + + + + DynamicLibrary + v141_xp + Unicode + + + DynamicLibrary + v141 + Unicode + + + + + + + + + + + + + <_ProjectFileVersion>14.0.25420.1 + + + dynamic\ + obj\ + false + $(MSBuildProjectName) + + + false + $(MSBuildProjectName) + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + Level3 + + + $(OutDir)zh_TW.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + MultiThreaded + + + Level3 + + + $(OutDir)zh_TW.dll + Windows + true + true + true + + + Copying language DLL into debug directory + if not exist ..\debug\lang md ..\debug\lang +copy "$(TargetPath)" ..\debug\lang\$(TargetFileName) + + + + + + + + + + + + + \ No newline at end of file diff --git a/lang/zh_TW_vc71.vcproj b/lang/zh_TW_vc71.vcproj deleted file mode 100644 index 6f59df6f..00000000 --- a/lang/zh_TW_vc71.vcproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/mdump.cpp b/mdump.cpp index 9cba9e6d..ae2ee74b 100644 --- a/mdump.cpp +++ b/mdump.cpp @@ -93,7 +93,9 @@ HMODULE CMiniDumper::GetDebugHelperDll(FARPROC* ppfnMiniDumpWriteDump, bool bSho _T("Do you want to create this file now?") LONG WINAPI CMiniDumper::TopLevelFilter(struct _EXCEPTION_POINTERS* pExceptionInfo) noexcept { +#ifdef _DEBUG LONG lRetValue = EXCEPTION_CONTINUE_SEARCH; +#endif TCHAR szResult[MAX_PATH + 1024] = {}; MINIDUMPWRITEDUMP pfnMiniDumpWriteDump = NULL; HMODULE hDll = GetDebugHelperDll((FARPROC*)&pfnMiniDumpWriteDump, true); @@ -151,7 +153,9 @@ LONG WINAPI CMiniDumper::TopLevelFilter(struct _EXCEPTION_POINTERS* pExceptionIn // Do *NOT* localize that string (in fact, do not use MFC to load it)! _sntprintf(szResult, _countof(szResult) - 1, _T("Saved dump file to \"%s\".\r\n\r\nPlease send this file together with a detailed bug report to dumps@emule-project.net !\r\n\r\nThank you for helping to improve eMule."), szDumpPath); szResult[_countof(szResult) - 1] = _T('\0'); +#ifdef _DEBUG lRetValue = EXCEPTION_EXECUTE_HANDLER; +#endif } else { diff --git a/res/emule.manifest b/res/emule.manifest index 4af9c024..0959b47e 100644 --- a/res/emule.manifest +++ b/res/emule.manifest @@ -4,9 +4,9 @@ name="eMule" processorArchitecture="x86" publicKeyToken="0000000000000000" - version="0.51.0.10" + version="0.51.0.11" /> - eMule by http://www.emule-project.net + eMule by https://www.emule-project.net diff --git a/res/emule.rc2 b/res/emule.rc2 index e8448628..de12290f 100644 --- a/res/emule.rc2 +++ b/res/emule.rc2 @@ -16,27 +16,27 @@ // VS_VERSION_INFO VERSIONINFO - FILEVERSION VERSION_MJR,VERSION_MIN,VERSION_UPDATE,VERSION_BUILD - PRODUCTVERSION VERSION_MJR,VERSION_MIN,VERSION_UPDATE,VERSION_BUILD - FILEFLAGSMASK VS_FFI_FILEFLAGSMASK + FILEVERSION VERSION_MJR,VERSION_MIN,VERSION_UPDATE,VERSION_BUILD + PRODUCTVERSION VERSION_MJR,VERSION_MIN,VERSION_UPDATE,VERSION_BUILD + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifdef _DEBUG - FILEFLAGS VS_FF_DEBUG | VS_FF_PRIVATEBUILD | VS_FF_PRERELEASE + FILEFLAGS VS_FF_DEBUG | VS_FF_PRIVATEBUILD | VS_FF_PRERELEASE #else - FILEFLAGS 0x0L // final version + FILEFLAGS 0x0L // final version #endif - FILEOS VOS__WINDOWS32 - FILETYPE VFT_APP - FILESUBTYPE 0x0L // not used + FILEOS VOS__WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L // not used BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904B0" // Lang=US English, CharSet=Unicode BEGIN - VALUE "CompanyName", "http://www.emule-project.net" + VALUE "CompanyName", "https://www.emule-project.net" VALUE "FileDescription", "eMule" VALUE "FileVersion", SZ_VERSION_NAME " Unicode" VALUE "InternalName", "emule.exe" - VALUE "LegalCopyright", "Copyright © 2002-2010 Merkur - Read license.txt for more infos." + VALUE "LegalCopyright", "Copyright © 2002-2018 Merkur - Read license.txt for more infos." VALUE "OriginalFilename", "emule.exe" VALUE "ProductName", "eMule" VALUE "ProductVersion", SZ_VERSION_NAME " Unicode" @@ -44,7 +44,7 @@ BEGIN END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 // Lang=US English, CharSet=Unicode + VALUE "Translation", 0x409, 1200 // Lang=US English, CharSet=Unicode END END diff --git a/tabctrl.cpp b/tabctrl.cpp index f5a728f5..8dca2d5d 100644 --- a/tabctrl.cpp +++ b/tabctrl.cpp @@ -33,7 +33,7 @@ END_MESSAGE_MAP() // 'TabControl::TabControl' // TabControl::TabControl() - : m_bDragging(false), m_nSrcTab(0), m_nDstTab(0), m_bHotTracking(false), m_InsertPosRect(0, 0, 0, 0), m_pSpinCtrl(0) + : m_bDragging(), m_nSrcTab(), m_nDstTab(), m_bHotTracking(), m_InsertPosRect(), m_pSpinCtrl() { } diff --git a/webinterface/eMule.tmpl b/webinterface/eMule.tmpl index 9942db9e..68b0a044 100644 --- a/webinterface/eMule.tmpl +++ b/webinterface/eMule.tmpl @@ -18,9 +18,10 @@ <-- ################################################################# --> <--TMPL_LOGIN--> + - + [eMuleAppName] [version] - [WebControl] -[eMuleAppName] [version] - [WebControl] - + + [ConText]   ( [CurUsers]   [CurFiles]) + [KadConText] + + + + - + - + + @@ -804,7 +807,7 @@ else [Users]: [CurUsers] ([MaxUsers]) -
+
@@ -814,9 +817,7 @@ else - - - - - -
+
@@ -1471,12 +1472,13 @@ function searchange3() { - + - + @@ -1508,15 +1510,15 @@ function searchange3() { @@ -1529,9 +1531,9 @@ function searchange3() {
 [ServerOptions] 
+ +
    -
@@ -1496,11 +1498,11 @@ function searchange3() {
[Static]
[ConnectNow]
[Priority]
- - - + + +
[IP]    - - - + + +    @@ -1543,7 +1545,7 @@ function searchange3() {
[Message]
-
+
<--TMPL_ADDSERVERBOX_END--> @@ -1612,14 +1614,15 @@ function searchange3() { [UploadQueue] [UploadQueueFriend] [UploadQueueBanned] - + + <--TMPL_TRANSFER_LIST_END--> <--TMPL_TRANSFER_DOWN_HEADER--> - @@ -1643,12 +1646,11 @@ function GotoCat(cat) { - + @@ -1732,9 +1734,9 @@ function GotoCat(cat) { <--TMPL_TRANSFER_UP_LINE--> - - +
 [DownloadList] -        -    [Category] - +    [Category] +         
× × [DFilename][DFilenameI]
-
  
[FileInfo]
[1]
[FileInfo]
[ClientSoftV]
[FileInfo]
[2]
 
[FileInfo]
[1]
+
[FileInfo]
[ClientSoftV] +
[FileInfo]
[2] [3] [4] @@ -1762,36 +1764,36 @@ function GotoCat(cat) { <--TMPL_TRANSFER_UP_QUEUE_SHOW_END--> -<--TMPL_TRANSFER_UP_QUEUE_BANNED_SHOW--> +<--TMPL_TRANSFER_UP_QUEUE_FRIEND_SHOW--> -   [UploadQueueBannedList] - [CounterQueueBanned] ([CounterQueueBannedSecure]) +   [UploadQueueFriendList] + [CounterQueueFriend] ([CounterQueueFriendSecure]) -
× × [UserNameTitle][UserNameTitleI]
+
× × [UserNameTitle][UserNameTitleI]
[Version][VersionI] [FileNameTitle][FileNameTitleI] [ScoreTitle][ScoreTitleI]   -[QueueListBanned] -<--TMPL_TRANSFER_UP_QUEUE_BANNED_SHOW_END--> +[QueueListFriend] +<--TMPL_TRANSFER_UP_QUEUE_FRIEND_SHOW_END--> -<--TMPL_TRANSFER_UP_QUEUE_FRIEND_SHOW--> +<--TMPL_TRANSFER_UP_QUEUE_BANNED_SHOW--> -   [UploadQueueFriendList] - [CounterQueueFriend] ([CounterQueueFriendSecure]) +   [UploadQueueBannedList] + [CounterQueueBanned] ([CounterQueueBannedSecure]) -
× × [UserNameTitle][UserNameTitleI]
+
× × [UserNameTitle][UserNameTitleI]
[Version][VersionI] [FileNameTitle][FileNameTitleI] [ScoreTitle][ScoreTitleI]   -[QueueListFriend] -<--TMPL_TRANSFER_UP_QUEUE_FRIEND_SHOW_END--> +[QueueListBanned] +<--TMPL_TRANSFER_UP_QUEUE_BANNED_SHOW_END--> <--TMPL_TRANSFER_UP_QUEUE_LINE--> @@ -1845,10 +1847,12 @@ function GotoCat(cat) { [CounterAll] ([CounterAllSecure]) - + + + [CounterQueue] ([CounterQueueSecure]) <--TMPL_TRANSFER_UP_QUEUE_HIDE_END--> @@ -1856,10 +1860,12 @@ function GotoCat(cat) { <--TMPL_TRANSFER_UP_QUEUE_BANNED_HIDE--> - + + + [CounterQueueBanned] ([CounterQueueBannedSecure]) <--TMPL_TRANSFER_UP_QUEUE_BANNED_HIDE_END--> @@ -1867,10 +1873,12 @@ function GotoCat(cat) { <--TMPL_TRANSFER_UP_QUEUE_FRIEND_HIDE--> - + + + [CounterQueueFriend] ([CounterQueueFriendSecure]) <--TMPL_TRANSFER_UP_QUEUE_FRIEND_HIDE_END--> @@ -1886,7 +1894,7 @@ function GotoCat(cat) { <--TMPL_SEARCH--> -   - + - + - +
-
[TxtDownload]: Max [MaxDownload] [KByteSec], [TxtTime]: [ScaleTime]
 
[TxtDownload]: Max [MaxDownload] [KByteSec], [TxtTime]: [ScaleTime]
 
-
[TxtUpload]: Max [MaxUpload] [KByteSec], [TxtTime]: [ScaleTime]
 
[TxtUpload]: Max [MaxUpload] [KByteSec], [TxtTime]: [ScaleTime]
 
-
[TxtConnections]: Max [MaxConnections], [TxtTime]: [ScaleTime]
[TxtConnections]: Max [MaxConnections], [TxtTime]: [ScaleTime]
<--TMPL_GRAPHS_END--> @@ -2212,89 +2227,90 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]); <--TMPL_PREFERENCES--> -
+
- - - + + + - - + + + @@ -2305,11 +2321,11 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]); -
[WebControl]
-[UseGzipForm] +[UseGzipForm]
- +     [UseGzipComment] -
+
-[RefreshTimeForm] +[RefreshTimeForm]
- -    [RefreshTimeComment]
+ +    [RefreshTimeComment]
 
[eMuleAppName]
[eMuleAppName]
-[SpeedCapForm] +[SpeedCapForm]
- -    [MaxCapDown]: [KBS] -  [MaxCapUp]: [KBS] + +    [MaxCapDown]: [KBS] +  [MaxCapUp]: [KBS]
-[SpeedForm] +[SpeedForm]
- -    [MaxDown]: [KBS] -  [MaxUp]: [KBS] + +    [MaxDown]: [KBS] +  [MaxUp]: [KBS]
-[LimitForm] +[LimitForm]
- - + + - - + + - - + +
[MaxSources][MaxSources]
[MaxConnections][MaxConnections]
[MaxConnectionsPer5][MaxConnectionsPer5]
+ -
- +
+
  <--TMPL_PREFERENCES_END--> @@ -2329,15 +2345,15 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]); @@ -2359,15 +2375,15 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]);
-
[ServerInfo]
+
[ServerInfo]
- - - + + +
@@ -2386,15 +2402,15 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]);
-
[Log]
+
[Log]
- - - + + +
@@ -2411,7 +2427,7 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]);
-
[DebugLog]
+
[DebugLog]
- - - + + +
-
[MYINFOLOG]
+
[MYINFOLOG]
@@ -2429,7 +2445,7 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]);
- + @@ -2439,7 +2455,7 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]); - + - +
[BOOTSTRAP][BOOTSTRAP]
[BS_IP]:
[BS_PORT]:
@@ -2465,17 +2481,17 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]);
[KAD]
- [STATUS] + [STATUS] - + [KADSTATUS]
- [KADACTION] + [KADACTION]
@@ -2486,20 +2502,20 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]); - + - + +
[KADSTAT]
[KADSTAT]
- + [KADSTATSLABELS] - + [KADSTATSDATA] -
@@ -2512,10 +2528,10 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]); <--TMPL_COMMENTLIST--> - + - + [COMMENTS] @@ -2526,18 +2542,18 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]); - - + + - - - - + + + + - [COMMENTLINES] + [COMMENTLINES]
[COMMENTS]

([CLOSE])

[COMMENTS]

([CLOSE])

[USERNAME][FILENAME][COMMENT][RATING][USERNAME][FILENAME][COMMENT][RATING]
@@ -2548,9 +2564,9 @@ traceGraph(ulstring,"stats_con.gif",[MaxConnections]); <--TMPL_COMMENTLIST_LINE--> -%s -%s -%s -%s +%s +%s +%s +%s <--TMPL_COMMENTLIST_LINE_END-->