Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d5897a64
Commit
d5897a64
authored
Mar 14, 2003
by
Rein Klazes
Committed by
Alexandre Julliard
Mar 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a stub for msnet32.57
parent
d39af613
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
msnet32.spec
dlls/msnet32/msnet32.spec
+1
-0
msnet_main.c
dlls/msnet32/msnet_main.c
+30
-1
No files found.
dlls/msnet32/msnet32.spec
View file @
d5897a64
...
...
@@ -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 @
...
...
dlls/msnet32/msnet_main.c
View file @
d5897a64
/* 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
);
/***********************************************************************
* @ (MSNET32.57)
*/
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 */
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment