wmvcore: Add WMCheckURLScheme stub.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Austin English 2017-06-14 15:29:26 -05:00 committed by Alexandre Julliard
parent e3234f6ede
commit 3f6b7c34db
5 changed files with 1303 additions and 2 deletions

View File

@ -1,5 +1,5 @@
@ stub WMCheckURLExtension
@ stub WMCheckURLScheme
@ stdcall WMCheckURLScheme(wstr)
@ stub WMCreateBackupRestorerPrivate
@ stub WMCreateSyncReaderPriv
@ stub WMIsAvailableOffline

View File

@ -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);

View File

@ -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 \

1266
include/nserror.h 100644

File diff suppressed because it is too large Load Diff

26
include/wmsdk.h 100644
View File

@ -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"