mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 22:50:08 +00:00
e37c6e18d0
headers (with help from Dimitrie O. Paun).
129 lines
4 KiB
C
129 lines
4 KiB
C
/*
|
|
* MPR Network Provider Services functions
|
|
*
|
|
* Copyright 1999 Ulrich Weigand
|
|
*
|
|
* 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 <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winnetwk.h"
|
|
#include "netspi.h"
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mpr);
|
|
|
|
|
|
/*****************************************************************
|
|
* NPSAuthenticationDialogA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSAuthenticationDialogA( LPAUTHDLGSTRUCTA lpAuthDlgStruct )
|
|
{
|
|
FIXME( "(%p): stub\n", lpAuthDlgStruct );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSGetProviderHandleA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSGetProviderHandleA( PHPROVIDER phProvider )
|
|
{
|
|
FIXME( "(%p): stub\n", phProvider );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSGetProviderNameA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSGetProviderNameA( HPROVIDER hProvider, LPCSTR *lpszProviderName )
|
|
{
|
|
FIXME( "(%p, %p): stub\n", hProvider, lpszProviderName );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSGetSectionNameA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSGetSectionNameA( HPROVIDER hProvider, LPCSTR *lpszSectionName )
|
|
{
|
|
FIXME( "(%p, %p): stub\n", hProvider, lpszSectionName );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSSetExtendedErrorA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSSetExtendedErrorA( DWORD NetSpecificError, LPSTR lpExtendedErrorText )
|
|
{
|
|
FIXME( "(%08lx, %s): stub\n", NetSpecificError, debugstr_a(lpExtendedErrorText) );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSSetCustomTextA [MPR.@]
|
|
*/
|
|
VOID WINAPI NPSSetCustomTextA( LPSTR lpCustomErrorText )
|
|
{
|
|
FIXME( "(%s): stub\n", debugstr_a(lpCustomErrorText) );
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSCopyStringA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSCopyStringA( LPCSTR lpString, LPVOID lpBuffer, LPDWORD lpdwBufferSize )
|
|
{
|
|
FIXME( "(%s, %p, %p): stub\n", debugstr_a(lpString), lpBuffer, lpdwBufferSize );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSDeviceGetNumberA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSDeviceGetNumberA( LPSTR lpLocalName, LPDWORD lpdwNumber, LPDWORD lpdwType )
|
|
{
|
|
FIXME( "(%s, %p, %p): stub\n", debugstr_a(lpLocalName), lpdwNumber, lpdwType );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSDeviceGetStringA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSDeviceGetStringA( DWORD dwNumber, DWORD dwType, LPSTR lpLocalName, LPDWORD lpdwBufferSize )
|
|
{
|
|
FIXME( "(%ld, %ld, %p, %p): stub\n", dwNumber, dwType, lpLocalName, lpdwBufferSize );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSNotifyRegisterA [MPR.@]
|
|
*/
|
|
DWORD WINAPI NPSNotifyRegisterA( enum NOTIFYTYPE NotifyType, NOTIFYCALLBACK pfNotifyCallBack )
|
|
{
|
|
FIXME( "(%d, %p): stub\n", NotifyType, pfNotifyCallBack );
|
|
return WN_NOT_SUPPORTED;
|
|
}
|
|
|
|
/*****************************************************************
|
|
* NPSNotifyGetContextA [MPR.@]
|
|
*/
|
|
LPVOID WINAPI NPSNotifyGetContextA( NOTIFYCALLBACK pfNotifyCallBack )
|
|
{
|
|
FIXME( "(%p): stub\n", pfNotifyCallBack );
|
|
return NULL;
|
|
}
|
|
|