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
db1baf73
Commit
db1baf73
authored
Jul 21, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation for MsiProvideQualifiedComponentExA.
parent
8bce656f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
msi.c
dlls/msi/msi.c
+15
-0
msi.spec
dlls/msi/msi.spec
+1
-1
No files found.
dlls/msi/msi.c
View file @
db1baf73
...
...
@@ -1606,6 +1606,21 @@ UINT WINAPI MsiProvideQualifiedComponentExW(LPCWSTR szComponent,
}
/***********************************************************************
* MsiProvideQualifiedComponentExA [MSI.@]
*/
UINT
WINAPI
MsiProvideQualifiedComponentExA
(
LPCSTR
szComponent
,
LPCSTR
szQualifier
,
DWORD
dwInstallMode
,
LPSTR
szProduct
,
DWORD
Unused1
,
DWORD
Unused2
,
LPSTR
lpPathBuf
,
DWORD
*
pcchPathBuf
)
{
FIXME
(
"%s %s %li %s %li %li %p %p
\n
"
,
debugstr_a
(
szComponent
),
debugstr_a
(
szQualifier
),
dwInstallMode
,
debugstr_a
(
szProduct
),
Unused1
,
Unused2
,
lpPathBuf
,
pcchPathBuf
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* MsiProvideQualifiedComponentW [MSI.@]
*/
UINT
WINAPI
MsiProvideQualifiedComponentW
(
LPCWSTR
szComponent
,
...
...
dlls/msi/msi.spec
View file @
db1baf73
...
...
@@ -195,7 +195,7 @@
199 stdcall MsiMessageBoxW(long long long long long long)
200 stdcall MsiDecomposeDescriptorA(str ptr ptr ptr ptr)
201 stdcall MsiDecomposeDescriptorW(wstr ptr ptr ptr ptr)
202 st
ub MsiProvideQualifiedComponentExA
202 st
dcall MsiProvideQualifiedComponentExA(str str long str long long ptr ptr)
203 stdcall MsiProvideQualifiedComponentExW(wstr wstr long wstr long long ptr ptr)
204 stdcall MsiEnumRelatedProductsA(str long long ptr)
205 stdcall MsiEnumRelatedProductsW(wstr long long ptr)
...
...
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