parent
57de1d522b
commit
bc0806d50d
|
|
@ -3,7 +3,6 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "dll.h"
|
#include "dll.h"
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
USING_NAMESPACE(CryptoPP)
|
USING_NAMESPACE(CryptoPP)
|
||||||
USING_NAMESPACE(std)
|
USING_NAMESPACE(std)
|
||||||
|
|
|
||||||
7
stdcpp.h
7
stdcpp.h
|
|
@ -1,6 +1,11 @@
|
||||||
#ifndef CRYPTOPP_STDCPP_H
|
#ifndef CRYPTOPP_STDCPP_H
|
||||||
#define CRYPTOPP_STDCPP_H
|
#define CRYPTOPP_STDCPP_H
|
||||||
|
|
||||||
|
#if _MSC_VER >= 1500
|
||||||
|
#define _DO_NOT_DECLARE_INTERLOCKED_INTRINSICS_IN_MEMORY
|
||||||
|
#include <intrin.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
@ -22,7 +27,7 @@
|
||||||
// for alloca
|
// for alloca
|
||||||
#ifdef __sun
|
#ifdef __sun
|
||||||
#include <alloca.h>
|
#include <alloca.h>
|
||||||
#elif defined(__MINGW32__)
|
#elif defined(__MINGW32__) || defined(__BORLANDC__)
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue