Sync DrDump crash handler with TortoiseSVN codebase
[TortoiseGit.git] / ext / CrashServer / CrashHandler / SendRpt / SendRpt.cpp
blobfa15fe49893303170eb55e5fde929f49857fc59c
1 // Copyright 2014 Idol Software, Inc.
2 //
3 // This file is part of Doctor Dump SDK.
4 //
5 // Doctor Dump SDK is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU Lesser General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public License
16 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include "StdAfx.h"
19 #include <shellapi.h>
20 #include <locale.h>
21 #include "SendReportDlg.h"
23 #ifdef _UNICODE
24 # if defined _M_IX86
25 # pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
26 # elif defined _M_IA64
27 # pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
28 # elif defined _M_X64
29 # pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
30 # else
31 # pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
32 # endif
33 #endif
35 int __cdecl SendReport(int argc, wchar_t* argv[]);
37 int APIENTRY wWinMain(HINSTANCE hInstance,
38 HINSTANCE hPrevInstance,
39 LPTSTR lpCmdLine,
40 int nCmdShow)
42 setlocale(LC_ALL, ".ACP");
44 LoadLibrary(_T("riched20"));
46 int argc;
47 LPWSTR* argv = CommandLineToArgvW(GetCommandLineW(), &argc);
49 if (argc != 2)
50 return 0;
52 int res = SendReport(argc, argv);
54 TerminateProcess(GetCurrentProcess(), res);
56 return res;