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
4b99bf02
Commit
4b99bf02
authored
Oct 02, 2006
by
Juan Lang
Committed by
Alexandre Julliard
Oct 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Implement msidbLocatorTypeFileName in RegLocator searches.
parent
8c2cdf7b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
appsearch.c
dlls/msi/appsearch.c
+3
-0
package.c
dlls/msi/tests/package.c
+1
-4
No files found.
dlls/msi/appsearch.c
View file @
4b99bf02
...
...
@@ -397,6 +397,9 @@ static UINT ACTION_AppSearchReg(MSIPACKAGE *package, LPWSTR *appValue,
rc
=
ACTION_SearchDirectory
(
package
,
sig
,
(
LPCWSTR
)
value
,
0
,
appValue
);
break
;
case
msidbLocatorTypeFileName
:
*
appValue
=
(
LPWSTR
)
value
;
break
;
case
msidbLocatorTypeRawValue
:
ACTION_ConvertRegValue
(
regType
,
value
,
sz
,
appValue
);
break
;
...
...
dlls/msi/tests/package.c
View file @
4b99bf02
...
...
@@ -2285,10 +2285,7 @@ static void test_appsearch(void)
r
=
MsiGetPropertyA
(
hpkg
,
"WEBBROWSERPROG"
,
prop
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"get property failed: %d
\n
"
,
r
);
todo_wine
{
ok
(
lstrlenA
(
prop
)
!=
0
,
"Expected non-zero length
\n
"
);
}
ok
(
lstrlenA
(
prop
)
!=
0
,
"Expected non-zero length
\n
"
);
MsiCloseHandle
(
hpkg
);
DeleteFileA
(
msifile
);
...
...
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