TortoiseMerge: Improve line margin icons (new icons are also suitable for High-DPI...
[TortoiseGit.git] / src / touch / touch.cpp
blob08a43225c3561a200b4629895d00df7764c7dd54
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2010-2013, 2016 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
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 General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // touch.cpp : Defines the entry point for the application.
23 #include "stdafx.h"
24 #include "resource.h"
26 int APIENTRY _tWinMain(HINSTANCE /*hInstance*/,
27 HINSTANCE /*hPrevInstance*/,
28 LPTSTR lpCmdLine,
29 int /*nCmdShow*/)
31 SetDllDirectory(L"");
33 if (!lpCmdLine[0])
34 return -1;
36 if(lpCmdLine[0] == '\"')
38 ++lpCmdLine;
39 for (size_t i = 0; lpCmdLine[i]; ++i)
40 if(lpCmdLine[i]== '\"')
42 lpCmdLine[i] = L'\0';
43 break;
46 HANDLE handle = CreateFile(lpCmdLine, GENERIC_READ | GENERIC_WRITE, 0, nullptr, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr);
47 if(handle == INVALID_HANDLE_VALUE)
48 return -1;
49 CloseHandle(handle);
51 DWORD attr=GetFileAttributes(lpCmdLine);
52 SetFileAttributes(lpCmdLine,attr);
53 return 0;