Commit 2164dee7 authored by Alexandre Julliard's avatar Alexandre Julliard

browseui: Convert dll registration to the IRegistrar mechanism.

parent 735d075b
......@@ -7,8 +7,9 @@ C_SRCS = \
aclsource.c \
browseui_main.c \
compcatcachedaemon.c \
progressdlg.c \
regsvr.c
progressdlg.c
IDL_R_SRCS = browseui_classes.idl
RC_SRCS = \
rsrc_Da.rc \
......
/*
* COM Classes for browseui
*
* Copyright 2010 Alexandre Julliard
*
* 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
*/
[
helpstring("Multiple AutoComplete List Container"),
threading(apartment),
uuid(00bb2765-6a77-11d0-a535-00c04fd7d062)
]
coclass ACLMulti { interface IACList; }
[
helpstring("Progress Dialog"),
threading(both),
uuid(f8383852-fcd3-11d1-a6b9-006097df5bd4)
]
coclass ProgressDialog { interface IProgressDialog; }
[
helpstring("Component Categories cache daemon"),
threading(apartment),
uuid(8c7461ef-2b13-11d2-be35-3078302c2030)
]
coclass CompCatCacheDaemon { interface IRunnableTask; }
[
helpstring("Shell Folder AutoComplete List"),
threading(apartment),
uuid(03c036f1-a186-11d0-824a-00aa005b4383)
]
coclass ACListISF { interface IACList2; }
......@@ -32,6 +32,7 @@
#include "winreg.h"
#include "shlwapi.h"
#include "shlguid.h"
#include "rpcproxy.h"
#include "browseui.h"
......@@ -234,3 +235,19 @@ HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
FIXME("(%s, %s): stub\n", bInstall ? "TRUE" : "FALSE", debugstr_w(cmdline));
return S_OK;
}
/***********************************************************************
* DllRegisterServer (BROWSEUI.@)
*/
HRESULT WINAPI DllRegisterServer(void)
{
return __wine_register_resources( BROWSEUI_hinstance, NULL );
}
/***********************************************************************
* DllUnregisterServer (BROWSEUI.@)
*/
HRESULT WINAPI DllUnregisterServer(void)
{
return __wine_unregister_resources( BROWSEUI_hinstance, NULL );
}
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