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
beaa1cde
Commit
beaa1cde
authored
Sep 01, 2007
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Sep 11, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound: Runtime link to advapi32.RegDeleteTree.
parent
63c06b4b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
regsvr.c
dlls/dsound/regsvr.c
+13
-4
No files found.
dlls/dsound/regsvr.c
View file @
beaa1cde
...
...
@@ -34,6 +34,9 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
dsound
);
static
typeof
(
RegDeleteTreeW
)
*
pRegDeleteTreeW
;
static
typeof
(
RegDeleteTreeA
)
*
pRegDeleteTreeA
;
/*
* Near the bottom of this file are the exported DllRegisterServer and
* DllUnregisterServer, which make all this worthwhile.
...
...
@@ -203,7 +206,7 @@ static HRESULT unregister_interfaces(struct regsvr_interface const *list)
WCHAR
buf
[
39
];
StringFromGUID2
(
list
->
iid
,
buf
,
39
);
res
=
RegDeleteTreeW
(
interface_key
,
buf
);
res
=
p
RegDeleteTreeW
(
interface_key
,
buf
);
if
(
res
==
ERROR_FILE_NOT_FOUND
)
res
=
ERROR_SUCCESS
;
}
...
...
@@ -311,18 +314,18 @@ static HRESULT unregister_coclasses(struct regsvr_coclass const *list)
WCHAR
buf
[
39
];
StringFromGUID2
(
list
->
clsid
,
buf
,
39
);
res
=
RegDeleteTreeW
(
coclass_key
,
buf
);
res
=
p
RegDeleteTreeW
(
coclass_key
,
buf
);
if
(
res
==
ERROR_FILE_NOT_FOUND
)
res
=
ERROR_SUCCESS
;
if
(
res
!=
ERROR_SUCCESS
)
goto
error_close_coclass_key
;
if
(
list
->
progid
)
{
res
=
RegDeleteTreeA
(
HKEY_CLASSES_ROOT
,
list
->
progid
);
res
=
p
RegDeleteTreeA
(
HKEY_CLASSES_ROOT
,
list
->
progid
);
if
(
res
==
ERROR_FILE_NOT_FOUND
)
res
=
ERROR_SUCCESS
;
if
(
res
!=
ERROR_SUCCESS
)
goto
error_close_coclass_key
;
}
if
(
list
->
viprogid
)
{
res
=
RegDeleteTreeA
(
HKEY_CLASSES_ROOT
,
list
->
viprogid
);
res
=
p
RegDeleteTreeA
(
HKEY_CLASSES_ROOT
,
list
->
viprogid
);
if
(
res
==
ERROR_FILE_NOT_FOUND
)
res
=
ERROR_SUCCESS
;
if
(
res
!=
ERROR_SUCCESS
)
goto
error_close_coclass_key
;
}
...
...
@@ -511,6 +514,12 @@ HRESULT WINAPI DllUnregisterServer(void)
{
HRESULT
hr
;
HMODULE
advapi32
=
GetModuleHandleA
(
"advapi32"
);
if
(
!
advapi32
)
return
E_FAIL
;
pRegDeleteTreeA
=
(
typeof
(
RegDeleteTreeA
)
*
)
GetProcAddress
(
advapi32
,
"RegDeleteTreeA"
);
pRegDeleteTreeW
=
(
typeof
(
RegDeleteTreeW
)
*
)
GetProcAddress
(
advapi32
,
"RegDeleteTreeW"
);
if
(
!
pRegDeleteTreeA
||
!
pRegDeleteTreeW
)
return
E_FAIL
;
TRACE
(
"
\n
"
);
hr
=
unregister_coclasses
(
coclass_list
);
...
...
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