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…
==============================================================================
--- 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
-
-@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/Mak…
==============================================================================
--- 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
+
+@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/cry…
==============================================================================
--- 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/cry…
==============================================================================
--- 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=…
==============================================================================
--- 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?r…
==============================================================================
--- 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/Makefil…
==============================================================================
--- 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
+
+@MAKE_DLL_RULES@
+
+### Dependencies:
Added: vendor/wine/dlls/cryptdll/current/cryptdll.c
URL: http://svn.reactos.ru/svn/reactos/vendor/wine/dlls/cryptdll/current/cryptdl…
==============================================================================
--- 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/cryptdl…
==============================================================================
--- 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
Author: greatlrd
Date: Fri Jun 2 01:26:10 2006
New Revision: 22164
URL: http://svn.reactos.ru/svn/reactos?rev=22164&view=rev
Log:
redirect __p__tzname to _tzname, I copy the idea from wine, for they are doing same
Modified:
trunk/reactos/dll/win32/msvcrt/msvcrt.def
Modified: trunk/reactos/dll/win32/msvcrt/msvcrt.def
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/msvcrt/msvcrt.def…
==============================================================================
--- trunk/reactos/dll/win32/msvcrt/msvcrt.def (original)
+++ trunk/reactos/dll/win32/msvcrt/msvcrt.def Fri Jun 2 01:26:10 2006
@@ -146,7 +146,7 @@
__p__pgmptr
__p__pwctype
__p__timezone
-__p__tzname=stub
+__p__tzname=_tzname
__p__wcmdln
__p__wenviron
__p__winmajor
Author: greatlrd
Date: Fri Jun 2 01:21:16 2006
New Revision: 22162
URL: http://svn.reactos.ru/svn/reactos?rev=22162&view=rev
Log:
redirect __p__mbctype to _mbctype, I copy the idea from wine, for they are doing same
Modified:
trunk/reactos/dll/win32/msvcrt/msvcrt.def
Modified: trunk/reactos/dll/win32/msvcrt/msvcrt.def
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/msvcrt/msvcrt.def…
==============================================================================
--- trunk/reactos/dll/win32/msvcrt/msvcrt.def (original)
+++ trunk/reactos/dll/win32/msvcrt/msvcrt.def Fri Jun 2 01:21:16 2006
@@ -140,7 +140,7 @@
__p__fmode
__p__iob
__p__mbcasemap=stub
-__p__mbctype=stub
+__p__mbctype=_mbctype
__p__osver
__p__pctype
__p__pgmptr