Add a .gitignore file (adapted from github.com/steakknife/tripwire fork); fix a Cygwin warning in tchar.h.

This commit is contained in:
Brian Cox 2016-03-25 11:45:54 -07:00
parent 9698ca5333
commit 82fbd232c8
2 changed files with 26 additions and 1 deletions

24
.gitignore vendored Normal file
View File

@ -0,0 +1,24 @@
stamp-h1
config.h
config.h.in~
config.log
config.status
compile
autom4te.cache/
bin/
lib/
**/Makefile
**/*.o
**/*.dylib
**/*.a
**/*.so
**/*.dll
**/siggen
**/tripwire
**/twadmin
**/twprint
**/siggen.exe
**/tripwire.exe
**/twadmin.exe
**/twprint.exe
releases/

View File

@ -125,8 +125,9 @@ typedef std::ifstream TIFSTREAM;
#define _T(x) x
// misc...
#ifndef __cdecl
#define __cdecl
#endif
#endif // WIN32