Author: gedmurphy Date: Fri Jun 2 01:23:52 2006 New Revision: 22163
URL: http://svn.reactos.ru/svn/reactos?rev=22163&view=rev Log: import cryptdll from Wine
Added: vendor/wine/dlls/cryptdll/ vendor/wine/dlls/cryptdll/Makefile.in vendor/wine/dlls/cryptdll/cryptdll.c vendor/wine/dlls/cryptdll/cryptdll.spec
Added: vendor/wine/dlls/cryptdll/Makefile.in URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/Makefile.in?rev=... ============================================================================== --- vendor/wine/dlls/cryptdll/Makefile.in (added) +++ vendor/wine/dlls/cryptdll/Makefile.in Fri Jun 2 01:23:52 2006 @@ -1,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:
Added: vendor/wine/dlls/cryptdll/cryptdll.c URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/cryptdll.c?rev=2... ============================================================================== --- vendor/wine/dlls/cryptdll/cryptdll.c (added) +++ vendor/wine/dlls/cryptdll/cryptdll.c Fri Jun 2 01:23:52 2006 @@ -1,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; +}
Added: vendor/wine/dlls/cryptdll/cryptdll.spec URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/cryptdll.spec?re... ============================================================================== --- vendor/wine/dlls/cryptdll/cryptdll.spec (added) +++ vendor/wine/dlls/cryptdll/cryptdll.spec Fri Jun 2 01:23:52 2006 @@ -1,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