Author: gedmurphy
Date: Fri Jun 2 01:30:02 2006
New Revision: 22166
URL:
http://svn.reactos.ru/svn/reactos?rev=22166&view=rev
Log:
First time import from wine-0.9.14
Added:
trunk/reactos/dll/win32/cryptdll/
trunk/reactos/dll/win32/cryptdll/Makefile.in
trunk/reactos/dll/win32/cryptdll/cryptdll.c
trunk/reactos/dll/win32/cryptdll/cryptdll.rbuild
trunk/reactos/dll/win32/cryptdll/cryptdll.spec
Added: trunk/reactos/dll/win32/cryptdll/Makefile.in
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/cryptdll/Makefile…
==============================================================================
--- trunk/reactos/dll/win32/cryptdll/Makefile.in (added)
+++ trunk/reactos/dll/win32/cryptdll/Makefile.in Fri Jun 2 01:30:02 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: trunk/reactos/dll/win32/cryptdll/cryptdll.c
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/cryptdll/cryptdll…
==============================================================================
--- trunk/reactos/dll/win32/cryptdll/cryptdll.c (added)
+++ trunk/reactos/dll/win32/cryptdll/cryptdll.c Fri Jun 2 01:30:02 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: trunk/reactos/dll/win32/cryptdll/cryptdll.rbuild
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/cryptdll/cryptdll…
==============================================================================
--- trunk/reactos/dll/win32/cryptdll/cryptdll.rbuild (added)
+++ trunk/reactos/dll/win32/cryptdll/cryptdll.rbuild Fri Jun 2 01:30:02 2006
@@ -1,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>
Added: trunk/reactos/dll/win32/cryptdll/cryptdll.spec
URL:
http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/cryptdll/cryptdll…
==============================================================================
--- trunk/reactos/dll/win32/cryptdll/cryptdll.spec (added)
+++ trunk/reactos/dll/win32/cryptdll/cryptdll.spec Fri Jun 2 01:30:02 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