From 8e8ee649bd1b6afbd516e7295d3dbb6b6a2e2327 Mon Sep 17 00:00:00 2001 From: flc Date: Tue, 9 Mar 2010 13:39:29 +0000 Subject: [PATCH] add windows.h include to ctx.c to satisfy dependencies and move internal.h include at end of includes git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@4092 c6295689-39f2-0310-b995-f0e70906c6a9 --- src/libopensc/ctx.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libopensc/ctx.c b/src/libopensc/ctx.c index e51bd35c..0de1b9f5 100644 --- a/src/libopensc/ctx.c +++ b/src/libopensc/ctx.c @@ -29,12 +29,13 @@ #include #include -#include "internal.h" - #ifdef _WIN32 +#include #include #endif +#include "internal.h" + int _sc_add_reader(sc_context_t *ctx, sc_reader_t *reader) { assert(reader != NULL);