OSDN Git Service

Fix error in call to GetTimeZoneInformation().
[tortoisegit/TortoiseGitJp.git] / src / crashrpt / StdAfx.cpp
1 // stdafx.cpp : source file that includes just the standard includes\r
2 //      CrashRpt.pch will be the pre-compiled header\r
3 //      stdafx.obj will contain the pre-compiled type information\r
4 \r
5 #include "stdafx.h"\r
6 \r
7 \r
8 //////////////////////////////////////////////////////////////////////\r
9 // how shall addresses be formatted?\r
10 //////////////////////////////////////////////////////////////////////\r
11 \r
12 const LPCTSTR addressFormat = sizeof (void*) <= 4\r
13         ? _T("0x%08x")\r
14         : _T("0x%016x");\r
15 \r
16 const LPCTSTR sizeFormat = _T("0x%08x");\r
17 const LPCTSTR offsetFormat = _T("0x%x");\r
18 \r