Move #include <windows.h> to winconfig.h in

order to minimize win32 specific code sections.


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1411 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aet 2003-09-03 18:18:57 +00:00
parent d63e83d4e3
commit 597877eb49
6 changed files with 5 additions and 13 deletions

View File

@ -1,6 +1,9 @@
#ifndef _OPENSC_WINCONFIG_H #ifndef _OPENSC_WINCONFIG_H
#define _OPENSC_WINCONFIG_H #define _OPENSC_WINCONFIG_H
#include <windows.h>
#include <sys/timeb.h>
#ifndef strcasecmp #ifndef strcasecmp
#define strcasecmp stricmp #define strcasecmp stricmp
#endif #endif

View File

@ -26,9 +26,6 @@
#include <errno.h> #include <errno.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <limits.h> #include <limits.h>
#ifdef _WIN32
#include <windows.h>
#endif
int _sc_add_reader(struct sc_context *ctx, struct sc_reader *reader) int _sc_add_reader(struct sc_context *ctx, struct sc_reader *reader)
{ {

View File

@ -21,9 +21,9 @@
#include "internal.h" #include "internal.h"
#include <assert.h> #include <assert.h>
#include <stdlib.h> #include <stdlib.h>
#ifndef _WIN32 #ifdef HAVE_SYS_TIME_H
#include <sys/time.h> #include <sys/time.h>
#else #endif
#include <sys/timeb.h> #include <sys/timeb.h>
#endif #endif
@ -60,7 +60,6 @@ sc_mutex_free(sc_mutex_t *p)
free(p); free(p);
} }
#elif defined(_WIN32) #elif defined(_WIN32)
#include <windows.h>
sc_mutex_t * sc_mutex_t *
sc_mutex_new(void) sc_mutex_new(void)

View File

@ -54,9 +54,6 @@
#include "profile.h" #include "profile.h"
#include "pkcs15-init.h" #include "pkcs15-init.h"
#include <opensc/cardctl.h> #include <opensc/cardctl.h>
#ifdef _WIN32
#include <windows.h>
#endif
/* Default ID for new key/pin */ /* Default ID for new key/pin */
#define DEFAULT_ID 0x45 #define DEFAULT_ID 0x45

View File

@ -37,9 +37,6 @@
#include <opensc/scconf.h> #include <opensc/scconf.h>
#include "pkcs15-init.h" #include "pkcs15-init.h"
#include "profile.h" #include "profile.h"
#ifdef _WIN32
#include <windows.h>
#endif
#define DEF_PRKEY_RSA_ACCESS 0x1D #define DEF_PRKEY_RSA_ACCESS 0x1D
#define DEF_PRKEY_DSA_ACCESS 0x12 #define DEF_PRKEY_DSA_ACCESS 0x12

View File

@ -317,7 +317,6 @@ int scrandom_get_data(unsigned char *buf, unsigned int len)
*/ */
#include "scrandom.h" #include "scrandom.h"
#include <windows.h>
#include <wincrypt.h> #include <wincrypt.h>
int scrandom_get_data(unsigned char *buf, unsigned int len) int scrandom_get_data(unsigned char *buf, unsigned int len)