[ros-diffs] [gedmurphy] 22165: split into release and current

gedmurphy at svn.reactos.org gedmurphy at svn.reactos.org
Thu Jun 1 23:27:25 CEST 2006


Author: gedmurphy
Date: Fri Jun  2 01:27:24 2006
New Revision: 22165

URL: http://svn.reactos.ru/svn/reactos?rev=22165&view=rev
Log:
split into release and current

Added:
    vendor/wine/dlls/cryptdll/Wine-0_9_14/
    vendor/wine/dlls/cryptdll/Wine-0_9_14/Makefile.in
    vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.c
    vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.spec
    vendor/wine/dlls/cryptdll/current/
    vendor/wine/dlls/cryptdll/current/Makefile.in
    vendor/wine/dlls/cryptdll/current/cryptdll.c
    vendor/wine/dlls/cryptdll/current/cryptdll.spec
Removed:
    vendor/wine/dlls/cryptdll/Makefile.in
    vendor/wine/dlls/cryptdll/cryptdll.c
    vendor/wine/dlls/cryptdll/cryptdll.spec

Removed: vendor/wine/dlls/cryptdll/Makefile.in
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/Makefile.in?rev=22164&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/Makefile.in (original)
+++ vendor/wine/dlls/cryptdll/Makefile.in (removed)
@@ -1,14 +1,0 @@
-TOPSRCDIR = @top_srcdir@
-TOPOBJDIR = ../..
-SRCDIR    = @srcdir@
-VPATH     = @srcdir@
-MODULE    = cryptdll.dll
-IMPORTLIB = libcryptdll.$(IMPLIBEXT)
-IMPORTS   = advapi32 kernel32
-
-C_SRCS = \
-	cryptdll.c
-
- at MAKE_DLL_RULES@
-
-### Dependencies:

Added: vendor/wine/dlls/cryptdll/Wine-0_9_14/Makefile.in
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/Wine-0_9_14/Makefile.in?rev=22165&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/Wine-0_9_14/Makefile.in (added)
+++ vendor/wine/dlls/cryptdll/Wine-0_9_14/Makefile.in Fri Jun  2 01:27:24 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
+
+ at MAKE_DLL_RULES@
+
+### Dependencies:

Added: vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.c
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.c?rev=22165&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.c (added)
+++ vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.c Fri Jun  2 01:27:24 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/Wine-0_9_14/cryptdll.spec
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.spec?rev=22165&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.spec (added)
+++ vendor/wine/dlls/cryptdll/Wine-0_9_14/cryptdll.spec Fri Jun  2 01:27:24 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

Removed: vendor/wine/dlls/cryptdll/cryptdll.c
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/cryptdll.c?rev=22164&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/cryptdll.c (original)
+++ vendor/wine/dlls/cryptdll/cryptdll.c (removed)
@@ -1,50 +1,0 @@
-/*
- * 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;
-}

Removed: vendor/wine/dlls/cryptdll/cryptdll.spec
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/cryptdll.spec?rev=22164&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/cryptdll.spec (original)
+++ vendor/wine/dlls/cryptdll/cryptdll.spec (removed)
@@ -1,14 +1,0 @@
-@ 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

Added: vendor/wine/dlls/cryptdll/current/Makefile.in
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/current/Makefile.in?rev=22165&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/current/Makefile.in (added)
+++ vendor/wine/dlls/cryptdll/current/Makefile.in Fri Jun  2 01:27:24 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
+
+ at MAKE_DLL_RULES@
+
+### Dependencies:

Added: vendor/wine/dlls/cryptdll/current/cryptdll.c
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/current/cryptdll.c?rev=22165&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/current/cryptdll.c (added)
+++ vendor/wine/dlls/cryptdll/current/cryptdll.c Fri Jun  2 01:27:24 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/current/cryptdll.spec
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/current/cryptdll.spec?rev=22165&view=auto
==============================================================================
--- vendor/wine/dlls/cryptdll/current/cryptdll.spec (added)
+++ vendor/wine/dlls/cryptdll/current/cryptdll.spec Fri Jun  2 01:27:24 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




More information about the Ros-diffs mailing list