Module: wine Branch: master Commit: dee7722b0768d7e89b17d7c484881d080d3b3fa2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=dee7722b0768d7e89b17d7c484...
Author: Bang Jun-young junyoung@mogua.com Date: Fri Feb 1 14:28:58 2008 +0900
crypt32: Include wine/port.h for snprintf().
---
dlls/crypt32/decode.c | 3 +++ dlls/crypt32/encode.c | 3 +++ 2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/dlls/crypt32/decode.c b/dlls/crypt32/decode.c index be7e40f..47b0ba6 100644 --- a/dlls/crypt32/decode.c +++ b/dlls/crypt32/decode.c @@ -30,6 +30,9 @@ * MSDN, especially "Constants for CryptEncodeObject and CryptDecodeObject" */
+#include "config.h" +#include "wine/port.h" + #include <assert.h> #include <stdarg.h> #include <stdio.h> diff --git a/dlls/crypt32/encode.c b/dlls/crypt32/encode.c index 6d5d152..f769afc 100644 --- a/dlls/crypt32/encode.c +++ b/dlls/crypt32/encode.c @@ -30,6 +30,9 @@ * MSDN, especially "Constants for CryptEncodeObject and CryptDecodeObject" */
+#include "config.h" +#include "wine/port.h" + #include <assert.h> #include <stdarg.h> #include <stdio.h>