pulled latest translations from Transifex
[TortoiseGit.git] / src / crashrpt / StdAfx.cpp
blob3b3378d003709976a2369c14e3e34d03aa84ff47
1 // stdafx.cpp : source file that includes just the standard includes
2 // CrashRpt.pch will be the pre-compiled header
3 // stdafx.obj will contain the pre-compiled type information
5 #include "stdafx.h"
8 //////////////////////////////////////////////////////////////////////
9 // how shall addresses be formatted?
10 //////////////////////////////////////////////////////////////////////
12 const LPCTSTR addressFormat = sizeof (void*) <= 4
13 ? _T("0x%08x")
14 : _T("0x%016x");
16 const LPCTSTR sizeFormat = _T("0x%08x");
17 const LPCTSTR offsetFormat = _T("0x%x");