Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2164dee7
Commit
2164dee7
authored
Dec 08, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
browseui: Convert dll registration to the IRegistrar mechanism.
parent
735d075b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
67 additions
and
2 deletions
+67
-2
Makefile.in
dlls/browseui/Makefile.in
+3
-2
browseui_classes.idl
dlls/browseui/browseui_classes.idl
+47
-0
browseui_main.c
dlls/browseui/browseui_main.c
+17
-0
regsvr.c
dlls/browseui/regsvr.c
+0
-0
No files found.
dlls/browseui/Makefile.in
View file @
2164dee7
...
...
@@ -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
\
...
...
dlls/browseui/browseui_classes.idl
0 → 100644
View file @
2164dee7
/*
*
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
(
00b
b2765
-
6
a77
-
11
d0
-
a535
-
00
c04fd7d062
)
]
coclass
ACLMulti
{
interface
IACList
; }
[
helpstring
(
"Progress Dialog"
),
threading
(
both
),
uuid
(
f8383852
-
fcd3
-
11
d1
-
a6b9
-
006097
df5bd4
)
]
coclass
ProgressDialog
{
interface
IProgressDialog
; }
[
helpstring
(
"Component Categories cache daemon"
),
threading
(
apartment
),
uuid
(
8
c7461ef
-
2b13
-
11
d2
-
be35
-
3078302
c2030
)
]
coclass
CompCatCacheDaemon
{
interface
IRunnableTask
; }
[
helpstring
(
"Shell Folder AutoComplete List"
),
threading
(
apartment
),
uuid
(
03
c036f1
-
a186
-
11
d0
-
824
a
-
00
aa005b4383
)
]
coclass
ACListISF
{
interface
IACList2
; }
dlls/browseui/browseui_main.c
View file @
2164dee7
...
...
@@ -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
);
}
dlls/browseui/regsvr.c
deleted
100644 → 0
View file @
735d075b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment