Added a stub for msnet32.57
This commit is contained in:
parent
d39af613a3
commit
d5897a6448
|
@ -55,6 +55,7 @@
|
||||||
55 stub @
|
55 stub @
|
||||||
56 stub @
|
56 stub @
|
||||||
57 stub @
|
57 stub @
|
||||||
|
57 stdcall @(long long ptr long ptr) MSNET32_57
|
||||||
58 stub @
|
58 stub @
|
||||||
59 stub @
|
59 stub @
|
||||||
60 stub @
|
60 stub @
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* @ (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 */
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue