FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
tdesktop/Telegram/SourceFiles/main.cpp at master · NandoKstroNet/tdesktop · GitHub
NandoKstroNet
/
tdesktop
Public
forked from
telegramdesktop/tdesktop
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
tdesktop
/
Telegram
/
SourceFiles
/
main.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
75 lines (63 loc) · 2.16 KB
Breadcrumbs
tdesktop
/
Telegram
/
SourceFiles
/
main.cpp
Copy path
File metadata and controls
75 lines (63 loc) · 2.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
This file is part of Telegram Desktop,
an unofficial desktop messaging app, see https://telegram.org
Telegram Desktop is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
It is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
Copyright (c) 2014 John Preston, https://tdesktop.com
*/
#
include
"
stdafx.h
"
#
include
"
application.h
"
#
include
"
pspecific.h
"
int
main
(
int
argc,
char
*argv[]) {
#
ifdef
_NEED_WIN_GENERATE_DUMP
_oldWndExceptionFilter =
SetUnhandledExceptionFilter
(_exceptionFilter);
#
endif
settingsParseArgs
(argc, argv);
for
(int32 i =
0
; i < argc; ++i) {
if
(
string
(
"
-fixprevious
"
) == argv[i]) {
return
psFixPrevious
();
}
else
if
(
string
(
"
-cleanup
"
) == argv[i]) {
return
psCleanup
();
}
}
logsInit
();
App::readConfig
();
if
(
cFromAutoStart
() && !
cAutoStart
()) {
psAutoStart
(
false
,
true
);
return
0
;
}
DEBUG_LOG
((
"
Application Info: Telegram started, test mode: %1, exe dir: %2
"
).
arg
(
logBool
(
cTestMode
())).
arg
(
cExeDir
()));
if
(
cDebug
()) {
LOG
((
"
Application Info: Telegram started in debug mode
"
));
for
(int32 i =
0
; i < argc; ++i) {
LOG
((
"
Argument: %1
"
).
arg
(
QString::fromLocal8Bit
(argv[i])));
}
}
DEBUG_LOG
((
"
Application Info: ideal thread count: %1, using %2 connections per session
"
).
arg
(
QThread::idealThreadCount
()).
arg
(
cConnectionsInSession
()));
psStart
();
int
result =
0
;
{
Application
app
(argc, argv);
if
(!
App::quiting
()) {
result = app.
exec
();
}
}
psFinish
();
DEBUG_LOG
((
"
Application Info: Telegram done, result: %1
"
).
arg
(result));
if
(
cRestartingUpdate
()) {
DEBUG_LOG
((
"
Application Info: executing updater to install update..
"
));
psExecUpdater
();
}
else
if
(
cRestarting
()) {
DEBUG_LOG
((
"
Application Info: executing Telegram, because of restart..
"
));
psExecTelegram
();
}
logsClose
();
return
result;
}
Back
|
FazBrowse Home
|
New Git URL