wmvcore: Add WMCheckURLScheme stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e3234f6ede
commit
3f6b7c34db
|
@ -1,5 +1,5 @@
|
||||||
@ stub WMCheckURLExtension
|
@ stub WMCheckURLExtension
|
||||||
@ stub WMCheckURLScheme
|
@ stdcall WMCheckURLScheme(wstr)
|
||||||
@ stub WMCreateBackupRestorerPrivate
|
@ stub WMCreateBackupRestorerPrivate
|
||||||
@ stub WMCreateSyncReaderPriv
|
@ stub WMCreateSyncReaderPriv
|
||||||
@ stub WMIsAvailableOffline
|
@ stub WMIsAvailableOffline
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include "wmvcore.h"
|
#include "wmvcore.h"
|
||||||
|
|
||||||
#include "initguid.h"
|
#include "initguid.h"
|
||||||
#include "wmsdkidl.h"
|
#include "wmsdk.h"
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(wmvcore);
|
WINE_DEFAULT_DEBUG_CHANNEL(wmvcore);
|
||||||
|
@ -47,6 +47,13 @@ HRESULT WINAPI DllRegisterServer(void)
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI WMCheckURLScheme(const WCHAR *scheme)
|
||||||
|
{
|
||||||
|
FIXME("(%s): stub\n", wine_dbgstr_w(scheme));
|
||||||
|
|
||||||
|
return NS_E_INVALID_NAME;
|
||||||
|
}
|
||||||
|
|
||||||
HRESULT WINAPI WMCreateEditor(IWMMetadataEditor **editor)
|
HRESULT WINAPI WMCreateEditor(IWMMetadataEditor **editor)
|
||||||
{
|
{
|
||||||
FIXME("(%p): stub\n", editor);
|
FIXME("(%p): stub\n", editor);
|
||||||
|
|
|
@ -523,6 +523,7 @@ HEADER_SRCS = \
|
||||||
netioapi.h \
|
netioapi.h \
|
||||||
nldef.h \
|
nldef.h \
|
||||||
npapi.h \
|
npapi.h \
|
||||||
|
nserror.h \
|
||||||
nspapi.h \
|
nspapi.h \
|
||||||
ntddcdrm.h \
|
ntddcdrm.h \
|
||||||
ntddndis.h \
|
ntddndis.h \
|
||||||
|
@ -688,6 +689,7 @@ HEADER_SRCS = \
|
||||||
wlanapi.h \
|
wlanapi.h \
|
||||||
wmistr.h \
|
wmistr.h \
|
||||||
wmium.h \
|
wmium.h \
|
||||||
|
wmsdk.h \
|
||||||
wnaspi32.h \
|
wnaspi32.h \
|
||||||
wownt32.h \
|
wownt32.h \
|
||||||
ws2def.h \
|
ws2def.h \
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,26 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2016 Austin English
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Unlikely to ever be needed on Wine, currently unimplemented */
|
||||||
|
/* #include <winapifamily.h> */
|
||||||
|
|
||||||
|
#include "wmsdkidl.h"
|
||||||
|
|
||||||
|
/* Currently unimplemented */
|
||||||
|
/* #include "asferr.h" */
|
||||||
|
#include "nserror.h"
|
Loading…
Reference in New Issue