rsaenh: Build with msvcrt.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-06-19 10:32:27 +02:00
parent eadb037ba1
commit 18fbc3a3cf
3 changed files with 6 additions and 11 deletions

View file

@ -2,6 +2,8 @@ MODULE = rsaenh.dll
IMPORTLIB = rsaenh IMPORTLIB = rsaenh
IMPORTS = bcrypt crypt32 advapi32 IMPORTS = bcrypt crypt32 advapi32
EXTRADLLFLAGS = -mno-cygwin
C_SRCS = \ C_SRCS = \
aes.c \ aes.c \
des.c \ des.c \

View file

@ -21,18 +21,15 @@
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
#include "config.h"
#include "wine/port.h"
#include "wine/library.h"
#include <stdarg.h>
#include <stdio.h>
#include "windef.h" #include "windef.h"
#include "winbase.h"
#include "wincrypt.h" #include "wincrypt.h"
#include "implglue.h" #include "implglue.h"
#include <stdio.h>
/* Function prototype copied from dlls/advapi32/crypt.c */ /* Function prototype copied from dlls/advapi32/crypt.c */
BOOL WINAPI SystemFunction036(PVOID pbBuffer, ULONG dwLen); BOOL WINAPI SystemFunction036(PVOID pbBuffer, ULONG dwLen);

View file

@ -22,11 +22,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
#include "config.h"
#include "wine/port.h"
#include "wine/library.h"
#include "wine/debug.h"
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>
@ -39,6 +34,7 @@
#include "objbase.h" #include "objbase.h"
#include "rpcproxy.h" #include "rpcproxy.h"
#include "aclapi.h" #include "aclapi.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(crypt); WINE_DEFAULT_DEBUG_CHANNEL(crypt);