Whitespace checkin
parent
458d582ab1
commit
efaaea4a90
16
config.h
16
config.h
|
|
@ -174,15 +174,15 @@ const lword LWORD_MAX = W64LIT(0xffffffffffffffff);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Handle missing ssize_t on Windows. Typedef's taken from:
|
// Handle missing ssize_t on Windows. Typedef's taken from:
|
||||||
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa383751%28v=vs.85%29.aspx#LONG_PTR
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa383751%28v=vs.85%29.aspx
|
||||||
#if defined(_WIN32) || defined(_WIN64)
|
#if defined(_WIN32) || defined(_WIN64)
|
||||||
# if defined(_WIN64)
|
# if defined(_WIN64)
|
||||||
typedef __int64 LONG_PTR;
|
typedef __int64 LONG_PTR;
|
||||||
# else
|
# else
|
||||||
typedef long LONG_PTR;
|
typedef long LONG_PTR;
|
||||||
# endif
|
# endif
|
||||||
typedef LONG_PTR SSIZE_T;
|
typedef LONG_PTR SSIZE_T;
|
||||||
typedef SSIZE_T ssize_t;
|
typedef SSIZE_T ssize_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CRYPTOPP_BOOL_SLOW_WORD64
|
#ifndef CRYPTOPP_BOOL_SLOW_WORD64
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue