Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:06

0001 // pch.h - originally written and placed in the public domain by Wei Dai

0002 
0003 /// \file pch.h

0004 /// \brief Precompiled header file

0005 /// \details The precompiled header files are used Windows.

0006 
0007 #ifndef CRYPTOPP_PCH_H
0008 #define CRYPTOPP_PCH_H
0009 
0010 # ifdef CRYPTOPP_GENERATE_X64_MASM
0011     #include "cpu.h"
0012 
0013 # else
0014     #include "config.h"
0015 
0016     #ifdef USE_PRECOMPILED_HEADERS
0017         #include "simple.h"
0018         #include "secblock.h"
0019         #include "misc.h"
0020         #include "smartptr.h"
0021         #include "stdcpp.h"
0022     #endif
0023 # endif
0024 
0025 // Enable file and line numbers, if available.

0026 // #if defined(_MSC_VER) && defined(_DEBUG) && defined(USE_PRECOMPILED_HEADERS)

0027 // # define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)

0028 // # define new DEBUG_NEW

0029 // #endif

0030 
0031 #endif  // CRYPTOPP_PCH_H