Commit 5d0806d2 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msctfp: Added proxy/stub dll for msctf.idl interfaces.

parent bb89f10e
......@@ -1130,6 +1130,7 @@ enable_mscat32
enable_mscms
enable_mscoree
enable_msctf
enable_msctfp
enable_msdaps
enable_msdmo
enable_msftedit
......@@ -17378,6 +17379,7 @@ wine_fn_config_dll mscoree enable_mscoree clean
wine_fn_config_test dlls/mscoree/tests mscoree_test
wine_fn_config_dll msctf enable_msctf clean
wine_fn_config_test dlls/msctf/tests msctf_test
wine_fn_config_dll msctfp enable_msctfp clean
wine_fn_config_dll msdaps enable_msdaps clean
wine_fn_config_dll msdmo enable_msdmo implib
wine_fn_config_test dlls/msdmo/tests msdmo_test
......
......@@ -3068,6 +3068,7 @@ WINE_CONFIG_DLL(mscoree,,[clean])
WINE_CONFIG_TEST(dlls/mscoree/tests)
WINE_CONFIG_DLL(msctf,,[clean])
WINE_CONFIG_TEST(dlls/msctf/tests)
WINE_CONFIG_DLL(msctfp,,[clean])
WINE_CONFIG_DLL(msdaps,,[clean])
WINE_CONFIG_DLL(msdmo,,[implib])
WINE_CONFIG_TEST(dlls/msdmo/tests)
......
MODULE = msctfp.dll
IMPORTS = rpcrt4 ole32 oleaut32
IDL_SRCS = msctfp.idl
dlldata_EXTRADEFS = -DWINE_REGISTER_DLL
/*
* Copyright 2015 Nikolay Sivov for CodeWeavers
*
* 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
*/
#pragma makedep ident proxy register
#include "msctf.idl"
[
threading(both),
uuid(b5f8fb3b-393f-4f7c-84cb-504924c2705a) /* ITfMSAAControl */
]
coclass PSFactoryBuffer { interface IFactoryBuffer; }
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
@ stdcall -private GetProxyDllInfo(ptr ptr)
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