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
8887d74b
Commit
8887d74b
authored
Feb 27, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SPINST_UNREGSVR must use the UnregisterDlls section, not the
RegisterDlls one.
parent
5a157628
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
install.c
dlls/setupapi/install.c
+4
-3
No files found.
dlls/setupapi/install.c
View file @
8887d74b
...
...
@@ -73,8 +73,9 @@ static const WCHAR BitReg[] = {'B','i','t','R','e','g',0};
static
const
WCHAR
UpdateInis
[]
=
{
'U'
,
'p'
,
'd'
,
'a'
,
't'
,
'e'
,
'I'
,
'n'
,
'i'
,
's'
,
0
};
static
const
WCHAR
CopyINF
[]
=
{
'C'
,
'o'
,
'p'
,
'y'
,
'I'
,
'N'
,
'F'
,
0
};
static
const
WCHAR
UpdateIniFields
[]
=
{
'U'
,
'p'
,
'd'
,
'a'
,
't'
,
'e'
,
'I'
,
'n'
,
'i'
,
'F'
,
'i'
,
'e'
,
'l'
,
'd'
,
's'
,
0
};
static
const
WCHAR
RegisterDlls
[]
=
{
'R'
,
'e'
,
'g'
,
'i'
,
's'
,
't'
,
'e'
,
'r'
,
'D'
,
'l'
,
'l'
,
's'
,
0
};
static
const
WCHAR
ProfileItems
[]
=
{
'P'
,
'r'
,
'o'
,
'f'
,
'i'
,
'l'
,
'e'
,
'I'
,
't'
,
'e'
,
'm'
,
's'
,
0
};
static
const
WCHAR
RegisterDlls
[]
=
{
'R'
,
'e'
,
'g'
,
'i'
,
's'
,
't'
,
'e'
,
'r'
,
'D'
,
'l'
,
'l'
,
's'
,
0
};
static
const
WCHAR
UnregisterDlls
[]
=
{
'U'
,
'n'
,
'r'
,
'e'
,
'g'
,
'i'
,
's'
,
't'
,
'e'
,
'r'
,
'D'
,
'l'
,
'l'
,
's'
,
0
};
static
const
WCHAR
ProfileItems
[]
=
{
'P'
,
'r'
,
'o'
,
'f'
,
'i'
,
'l'
,
'e'
,
'I'
,
't'
,
'e'
,
'm'
,
's'
,
0
};
/***********************************************************************
...
...
@@ -862,7 +863,7 @@ BOOL WINAPI SetupInstallFromInfSectionW( HWND owner, HINF hinf, PCWSTR section,
}
else
info
.
callback
=
NULL
;
if
(
!
iterate_section_fields
(
hinf
,
section
,
R
egisterDlls
,
register_dlls_callback
,
&
info
))
if
(
!
iterate_section_fields
(
hinf
,
section
,
Unr
egisterDlls
,
register_dlls_callback
,
&
info
))
return
FALSE
;
}
if
(
flags
&
SPINST_REGISTRY
)
...
...
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