No uint32_t type in MS VS

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@2383 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
sth 2005-07-06 12:23:03 +00:00
parent df232cfe67
commit 2731db845d
1 changed files with 4 additions and 0 deletions

View File

@ -22,7 +22,11 @@
#include <config.h>
#endif
#ifdef HAVE_OPENSSL
#ifdef _WIN32
typedef unsigned __int32 uint32_t;
#else
#include <stdint.h>
#endif
#include <openssl/bn.h>
#include <openssl/crypto.h>
#endif