mirror of
https://github.com/reactos/reactos.git
synced 2025-06-10 20:34:59 +00:00
[RAPPS] Incorrect "C" symbol replaced in the rest of the files
svn path=/branches/GSoC_2017/rapps/; revision=75435
This commit is contained in:
parent
0169546588
commit
af150f51fd
3 changed files with 15 additions and 15 deletions
|
@ -1264,10 +1264,10 @@ private:
|
||||||
case ID_INSTALL:
|
case ID_INSTALL:
|
||||||
if (nSelectedApps)
|
if (nSelectedApps)
|
||||||
{
|
{
|
||||||
СDownloadManager::DownloadListOfApplications(m_ListView->GetCheckedItems());
|
CDownloadManager::DownloadListOfApplications(m_ListView->GetCheckedItems());
|
||||||
UpdateApplicationsList(-1);
|
UpdateApplicationsList(-1);
|
||||||
}
|
}
|
||||||
else if(СDownloadManager::DownloadApplication(m_ListView->GetSelectedData()))
|
else if(CDownloadManager::DownloadApplication(m_ListView->GetSelectedData()))
|
||||||
{
|
{
|
||||||
UpdateApplicationsList(-1);
|
UpdateApplicationsList(-1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -341,15 +341,15 @@ MessageBox_LoadString(HWND hMainWnd, INT StringID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ÑDownloadManager
|
// CDownloadManager
|
||||||
PAPPLICATION_INFO ÑDownloadManager::AppInfo;
|
PAPPLICATION_INFO CDownloadManager::AppInfo;
|
||||||
ATL::CSimpleArray<PAPPLICATION_INFO> ÑDownloadManager::AppsToInstallList;
|
ATL::CSimpleArray<PAPPLICATION_INFO> CDownloadManager::AppsToInstallList;
|
||||||
CDowloadingAppsListView ÑDownloadManager::DownloadsListView;
|
CDowloadingAppsListView CDownloadManager::DownloadsListView;
|
||||||
INT ÑDownloadManager::iCurrentApp;
|
INT CDownloadManager::iCurrentApp;
|
||||||
|
|
||||||
#define DL_START_NEW WM_APP + 1
|
#define DL_START_NEW WM_APP + 1
|
||||||
|
|
||||||
INT_PTR CALLBACK ÑDownloadManager::DownloadDlgProc(HWND Dlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
INT_PTR CALLBACK CDownloadManager::DownloadDlgProc(HWND Dlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
HANDLE Thread;
|
HANDLE Thread;
|
||||||
DWORD ThreadId;
|
DWORD ThreadId;
|
||||||
|
@ -458,7 +458,7 @@ INT_PTR CALLBACK
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
LRESULT CALLBACK ÑDownloadManager::DownloadProgressProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData)
|
LRESULT CALLBACK CDownloadManager::DownloadProgressProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData)
|
||||||
{
|
{
|
||||||
static ATL::CStringW szProgressText;
|
static ATL::CStringW szProgressText;
|
||||||
|
|
||||||
|
@ -533,7 +533,7 @@ LRESULT CALLBACK
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DWORD WINAPI ÑDownloadManager::ThreadFunc(LPVOID Context)
|
DWORD WINAPI CDownloadManager::ThreadFunc(LPVOID Context)
|
||||||
{
|
{
|
||||||
CComPtr<IBindStatusCallback> dl;
|
CComPtr<IBindStatusCallback> dl;
|
||||||
ATL::CStringW Path;
|
ATL::CStringW Path;
|
||||||
|
@ -788,7 +788,7 @@ end:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL ÑDownloadManager::DownloadListOfApplications(const ATL::CSimpleArray<PAPPLICATION_INFO>& AppsList)
|
BOOL CDownloadManager::DownloadListOfApplications(const ATL::CSimpleArray<PAPPLICATION_INFO>& AppsList)
|
||||||
{
|
{
|
||||||
if (AppsList.GetSize() == 0)
|
if (AppsList.GetSize() == 0)
|
||||||
{
|
{
|
||||||
|
@ -804,7 +804,7 @@ BOOL
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL ÑDownloadManager::DownloadApplication(PAPPLICATION_INFO pAppInfo)
|
BOOL CDownloadManager::DownloadApplication(PAPPLICATION_INFO pAppInfo)
|
||||||
{
|
{
|
||||||
if (!pAppInfo)
|
if (!pAppInfo)
|
||||||
{
|
{
|
||||||
|
@ -818,7 +818,7 @@ BOOL
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID ÑDownloadManager::DownloadApplicationsDB(LPCWSTR lpUrl)
|
VOID CDownloadManager::DownloadApplicationsDB(LPCWSTR lpUrl)
|
||||||
{
|
{
|
||||||
APPLICATION_INFO IntInfo;
|
APPLICATION_INFO IntInfo;
|
||||||
IntInfo.szUrlDownload = lpUrl;
|
IntInfo.szUrlDownload = lpUrl;
|
||||||
|
@ -827,7 +827,7 @@ VOID
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: Reuse the dialog
|
//TODO: Reuse the dialog
|
||||||
VOID ÑDownloadManager::LaunchDownloadDialog()
|
VOID CDownloadManager::LaunchDownloadDialog()
|
||||||
{
|
{
|
||||||
CreateDialogW(hInst,
|
CreateDialogW(hInst,
|
||||||
MAKEINTRESOURCEW(IDD_DOWNLOAD_DIALOG),
|
MAKEINTRESOURCEW(IDD_DOWNLOAD_DIALOG),
|
||||||
|
|
|
@ -251,7 +251,7 @@ VOID FillDefaultSettings(PSETTINGS_INFO pSettingsInfo);
|
||||||
/* loaddlg.cpp */
|
/* loaddlg.cpp */
|
||||||
class CDowloadingAppsListView;
|
class CDowloadingAppsListView;
|
||||||
|
|
||||||
class ÑDownloadManager
|
class CDownloadManager
|
||||||
{
|
{
|
||||||
static PAPPLICATION_INFO AppInfo;
|
static PAPPLICATION_INFO AppInfo;
|
||||||
static ATL::CSimpleArray<PAPPLICATION_INFO> AppsToInstallList;
|
static ATL::CSimpleArray<PAPPLICATION_INFO> AppsToInstallList;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue