stub for msnet32@57

Rein Klazes rklazes at xs4all.nl
Fri Mar 14 10:22:18 CST 2003


hi,

Fix a crash running hh.exe.

Changelog:
	dlls/msnet32	: msnet32.spec
	dlls/msnet32	: msnet_main.c

	Add a stub for msnet32 at 57.

Rein.
-- 
Rein Klazes
rklazes at xs4all.nl
-------------- next part --------------
--- wine/dlls/msnet32/msnet32.spec	2002-06-21 21:15:48.000000000 +0200
+++ mywine/dlls/msnet32/msnet32.spec	2003-02-22 17:24:02.000000000 +0100
@@ -55,6 +55,7 @@
  55 stub @
  56 stub @
  57 stub @
+ 57 stdcall @(long long ptr long ptr)  MSNET32_57
  58 stub @
  59 stub @
  60 stub @
--- wine/dlls/msnet32/msnet_main.c	2000-07-26 20:30:38.000000000 +0200
+++ mywine/dlls/msnet32/msnet_main.c	2003-02-22 17:24:02.000000000 +0100
@@ -1 +1,30 @@
-/* nothing here yet */
+/*
+ * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#include "config.h"
+
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(win32);
+
+/***********************************************************************
+ *		@57 (MSNET32.@)
+ */
+LONG WINAPI MSNET32_57( LONG a1, LONG a2, LPVOID a3, LONG a4, LPVOID a5 )
+{
+    FIXME("(0x%04lx 0x%04lx %p 0x%04lx %p): stub\n", a1, a2, a3, a4, a5);
+    return -1; /* FAILURE */
+}


More information about the wine-patches mailing list