2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2016-02-08 10:56:18 +00:00
|
|
|
|
2019-02-07 16:36:30 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#ifdef small
|
|
|
|
#undef small
|
|
|
|
#endif // small
|
|
|
|
|
2016-02-08 10:56:18 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4091)
|
2014-05-30 08:53:19 +00:00
|
|
|
#include <DbgHelp.h>
|
2016-02-08 10:56:18 +00:00
|
|
|
#include <ShlObj.h>
|
|
|
|
#pragma warning(pop)
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
#include <Shellapi.h>
|
|
|
|
#include <Shlwapi.h>
|
|
|
|
|
|
|
|
#include <deque>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using std::deque;
|
|
|
|
using std::wstring;
|
|
|
|
|
|
|
|
extern LPTOP_LEVEL_EXCEPTION_FILTER _oldWndExceptionFilter;
|
|
|
|
LONG CALLBACK _exceptionFilter(EXCEPTION_POINTERS* pExceptionPointers);
|
2016-01-10 06:05:23 +00:00
|
|
|
LPTOP_LEVEL_EXCEPTION_FILTER WINAPI RedirectedSetUnhandledExceptionFilter(_In_opt_ LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelExceptionFilter);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
static int updaterVersion = 1000;
|
|
|
|
static const WCHAR *updaterVersionStr = L"0.1.0";
|