rsaenh: Build with msvcrt.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
eadb037ba1
commit
18fbc3a3cf
|
@ -2,6 +2,8 @@ MODULE = rsaenh.dll
|
|||
IMPORTLIB = rsaenh
|
||||
IMPORTS = bcrypt crypt32 advapi32
|
||||
|
||||
EXTRADLLFLAGS = -mno-cygwin
|
||||
|
||||
C_SRCS = \
|
||||
aes.c \
|
||||
des.c \
|
||||
|
|
|
@ -21,18 +21,15 @@
|
|||
* 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 "wine/library.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "wincrypt.h"
|
||||
|
||||
#include "implglue.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
/* Function prototype copied from dlls/advapi32/crypt.c */
|
||||
BOOL WINAPI SystemFunction036(PVOID pbBuffer, ULONG dwLen);
|
||||
|
||||
|
|
|
@ -22,11 +22,6 @@
|
|||
* 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 <stdio.h>
|
||||
|
||||
|
@ -39,6 +34,7 @@
|
|||
#include "objbase.h"
|
||||
#include "rpcproxy.h"
|
||||
#include "aclapi.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(crypt);
|
||||
|
||||
|
|
Loading…
Reference in New Issue