Replace var++ by ++var and use size_t where necessary
[TortoiseGit.git] / src / touch / touch.cpp
blob7def2efa68971b6a56d1d897fa7979ff44705cb9
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2010-2013 - 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(_tcslen(lpCmdLine) == 0)
34 return -1;
36 if(lpCmdLine[0] == '\"')
38 ++lpCmdLine;
39 for (size_t i = 0; i < _tcslen(lpCmdLine); ++i)
40 if(lpCmdLine[i]== '\"')
42 lpCmdLine[i]=0;
43 break;
46 HANDLE handle=CreateFile(lpCmdLine,GENERIC_READ | GENERIC_WRITE, 0,NULL,OPEN_ALWAYS,0,NULL);
47 if(handle == INVALID_HANDLE_VALUE)
48 return -1;
49 CloseHandle(handle);
51 DWORD attr=GetFileAttributes(lpCmdLine);
52 SetFileAttributes(lpCmdLine,attr);
53 return 0;