Files
Open-Shell-Menu/Src/Lib/DownloadHelper.h
ge0rdi 9f949dd99b Remove old updating mechanism
We have our own updating already and don't plan to use old one.
There is no need to keep it around.
2023-06-09 17:52:18 +02:00

51 lines
1.2 KiB
C++

// Classic Shell (c) 2009-2017, Ivo Beltchev
// Open-Shell (c) 2017-2018, The Open-Shell Team
// Confidential information of Ivo Beltchev. Not for disclosure or distribution without prior written consent from the author
#pragma once
#include <vector>
enum TVersionCheck
{
CHECK_AUTO,
CHECK_AUTO_WAIT,
CHECK_UPDATE,
};
enum TSettingsComponent;
struct VersionData
{
bool bValid = false;
DWORD newVersion = 0;
CString downloadUrl;
CString downloadSigner;
CString news;
CString updateLink;
bool bNewVersion = false;
bool bIgnoreVersion = false;
~VersionData( void ) { Clear(); }
void Clear( void );
void Swap( VersionData &data );
enum TLoadResult
{
LOAD_OK,
LOAD_ERROR, // the file is missing some data
LOAD_BAD_VERSION, // the version is wrong
LOAD_BAD_FILE, // the file is corrupted
};
TLoadResult Load(bool official);
private:
void operator=( const VersionData& );
};
typedef void (*tNewVersionCallback)( VersionData &data );
// 0 - fail, 1 - success, 2 - cancel
DWORD CheckForNewVersion( HWND owner, TSettingsComponent component, TVersionCheck check, tNewVersionCallback callback );
DWORD DownloadNewVersion( HWND owner, TSettingsComponent component, const wchar_t *url, const wchar_t *signer, CString &fname, CString &error );