mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 08:15:41 +00:00
First time import from wine-0.9.14
svn path=/trunk/; revision=22166
This commit is contained in:
parent
a4014404b7
commit
120aca25f3
4 changed files with 88 additions and 0 deletions
14
reactos/dll/win32/cryptdll/Makefile.in
Normal file
14
reactos/dll/win32/cryptdll/Makefile.in
Normal file
|
@ -0,0 +1,14 @@
|
|||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
MODULE = cryptdll.dll
|
||||
IMPORTLIB = libcryptdll.$(IMPLIBEXT)
|
||||
IMPORTS = advapi32 kernel32
|
||||
|
||||
C_SRCS = \
|
||||
cryptdll.c
|
||||
|
||||
@MAKE_DLL_RULES@
|
||||
|
||||
### Dependencies:
|
50
reactos/dll/win32/cryptdll/cryptdll.c
Normal file
50
reactos/dll/win32/cryptdll/cryptdll.c
Normal file
|
@ -0,0 +1,50 @@
|
|||
/*
|
||||
* Copyright 2005 Ulrich Czekalla (for CodeWeavers)
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* 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 <stdarg.h>
|
||||
#include <stdlib.h>
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(cryptdll);
|
||||
|
||||
HMODULE CRYPTDLL_hModule = 0;
|
||||
|
||||
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||
{
|
||||
TRACE("%p,%lx,%p\n", hinstDLL, fdwReason, lpvReserved);
|
||||
|
||||
switch (fdwReason) {
|
||||
case DLL_WINE_PREATTACH:
|
||||
return FALSE; /* prefer native version */
|
||||
case DLL_PROCESS_ATTACH:
|
||||
{
|
||||
DisableThreadLibraryCalls(hinstDLL);
|
||||
CRYPTDLL_hModule = hinstDLL;
|
||||
break;
|
||||
}
|
||||
case DLL_PROCESS_DETACH:
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
10
reactos/dll/win32/cryptdll/cryptdll.rbuild
Normal file
10
reactos/dll/win32/cryptdll/cryptdll.rbuild
Normal file
|
@ -0,0 +1,10 @@
|
|||
<module name="cryptdll" type="win32dll" baseaddress="${BASEADDRESS_CRYPTDLL}" installbase="system32" installname="cryptdll.dll">
|
||||
<importlibrary definition="cryptdll.spec.def" />
|
||||
<include base="cryptdll">.</include>
|
||||
<include base="ReactOS">include/reactos/wine</include>
|
||||
<define name="__USE_W32API" />
|
||||
<define name="_WIN32_WINNT">0x501</define>
|
||||
<define name="DLL_WINE_PREATTACH">8</define>
|
||||
<file>cryptdll.c</file>
|
||||
<file>cryptdll.spec</file>
|
||||
</module>
|
14
reactos/dll/win32/cryptdll/cryptdll.spec
Normal file
14
reactos/dll/win32/cryptdll/cryptdll.spec
Normal file
|
@ -0,0 +1,14 @@
|
|||
@ stub CDBuildIntegrityVect
|
||||
@ stub CDBuildVect
|
||||
@ stub CDFindCommonCSystem
|
||||
@ stub CDFindCommonCSystemWithKey
|
||||
@ stub CDGenerateRandomBits
|
||||
@ stub CDLocateCSystem
|
||||
@ stub CDLocateCheckSum
|
||||
@ stub CDLocateRng
|
||||
@ stub CDRegisterCSystem
|
||||
@ stub CDRegisterCheckSum
|
||||
@ stub CDRegisterRng
|
||||
@ stdcall MD5Final(ptr) advapi32.MD5Final
|
||||
@ stdcall MD5Init(ptr) advapi32.MD5Init
|
||||
@ stdcall MD5Update(ptr ptr long) advapi32.MD5Update
|
Loading…
Add table
Add a link
Reference in a new issue