Commit 3f6b7c34 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

wmvcore: Add WMCheckURLScheme stub.

parent e3234f6e
@ stub WMCheckURLExtension
@ stub WMCheckURLScheme
@ stdcall WMCheckURLScheme(wstr)
@ stub WMCreateBackupRestorerPrivate
@ stub WMCreateSyncReaderPriv
@ stub WMIsAvailableOffline
......
......@@ -19,7 +19,7 @@
#include "wmvcore.h"
#include "initguid.h"
#include "wmsdkidl.h"
#include "wmsdk.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(wmvcore);
......@@ -47,6 +47,13 @@ HRESULT WINAPI DllRegisterServer(void)
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)
{
FIXME("(%p): stub\n", editor);
......
......@@ -523,6 +523,7 @@ HEADER_SRCS = \
netioapi.h \
nldef.h \
npapi.h \
nserror.h \
nspapi.h \
ntddcdrm.h \
ntddndis.h \
......@@ -688,6 +689,7 @@ HEADER_SRCS = \
wlanapi.h \
wmistr.h \
wmium.h \
wmsdk.h \
wnaspi32.h \
wownt32.h \
ws2def.h \
......
This source diff could not be displayed because it is too large. You can view the blob instead.
/*
* 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"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment