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.
26 int APIENTRY
_tWinMain(HINSTANCE
/*hInstance*/,
27 HINSTANCE
/*hPrevInstance*/,
33 if(_tcslen(lpCmdLine
) == 0)
36 if(lpCmdLine
[0] == '\"')
39 for (size_t i
= 0; i
< _tcslen(lpCmdLine
); ++i
)
40 if(lpCmdLine
[i
]== '\"')
46 HANDLE handle
=CreateFile(lpCmdLine
,GENERIC_READ
| GENERIC_WRITE
, 0,NULL
,OPEN_ALWAYS
,0,NULL
);
47 if(handle
== INVALID_HANDLE_VALUE
)
51 DWORD attr
=GetFileAttributes(lpCmdLine
);
52 SetFileAttributes(lpCmdLine
,attr
);