Whitespace check-in
parent
1f1c90cc29
commit
f9ef238846
18
fipstest.cpp
18
fipstest.cpp
|
|
@ -30,18 +30,18 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
||||||
#ifdef _M_IX86
|
# ifdef _M_IX86
|
||||||
#define _CRT_DEBUGGER_HOOK _crt_debugger_hook
|
# define _CRT_DEBUGGER_HOOK _crt_debugger_hook
|
||||||
#else
|
# else
|
||||||
#define _CRT_DEBUGGER_HOOK __crt_debugger_hook
|
# define _CRT_DEBUGGER_HOOK __crt_debugger_hook
|
||||||
#endif
|
# endif
|
||||||
#if _MSC_VER < 1900
|
# if _MSC_VER < 1900
|
||||||
extern "C" {_CRTIMP void __cdecl _CRT_DEBUGGER_HOOK(int);}
|
extern "C" {_CRTIMP void __cdecl _CRT_DEBUGGER_HOOK(int);}
|
||||||
#else
|
# else
|
||||||
extern "C" {void __cdecl _CRT_DEBUGGER_HOOK(int); }
|
extern "C" {void __cdecl _CRT_DEBUGGER_HOOK(int); }
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif // CRYPTOPP_WIN32_AVAILABLE
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue