Module: wine Branch: master Commit: e25e1a4de213f05336ebadc5df51a2db89d5db91 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e25e1a4de213f05336ebadc5...
Author: Marcus Meissner marcus@jet.franken.de Date: Sat Sep 30 12:26:20 2006 +0200
crypt32: Include wine/port.h for strcasecmp.
---
dlls/crypt32/oid.c | 4 ++++ dlls/crypt32/store.c | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/dlls/crypt32/oid.c b/dlls/crypt32/oid.c index ca4d40f..a2434dd 100644 --- a/dlls/crypt32/oid.c +++ b/dlls/crypt32/oid.c @@ -16,6 +16,10 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ + +#include "config.h" +#include "wine/port.h" + #include <stdio.h> #include <stdarg.h> #define NONAMELESSUNION diff --git a/dlls/crypt32/store.c b/dlls/crypt32/store.c index 0aaa89d..07e9290 100644 --- a/dlls/crypt32/store.c +++ b/dlls/crypt32/store.c @@ -23,6 +23,9 @@ * - Many flags, options and whatnot are unimplemented. */
+#include "config.h" +#include "wine/port.h" + #include <assert.h> #include <stdarg.h> #include "windef.h"