Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9eefc04f
Commit
9eefc04f
authored
Apr 25, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation for MsiEnumProductsEx{A, W}.
parent
bab2ddb7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
msi.spec
dlls/msi/msi.spec
+2
-2
registry.c
dlls/msi/registry.c
+20
-0
No files found.
dlls/msi/msi.spec
View file @
9eefc04f
...
...
@@ -238,8 +238,8 @@
242 stub MsiExtractPatchXMLDataW
243 stub MsiGetPatchInfoExA
244 stub MsiGetPatchInfoExW
245 st
ub MsiEnumProductsExA
246 st
ub MsiEnumProductsExW
245 st
dcall MsiEnumProductsExA(str str long long ptr ptr ptr ptr)
246 st
dcall MsiEnumProductsExW(wstr wstr long long ptr ptr ptr ptr)
247 stub MsiGetProductInfoExA
248 stub MsiGetProductInfoExW
249 stub MsiQueryComponentStateA
...
...
dlls/msi/registry.c
View file @
9eefc04f
...
...
@@ -1068,3 +1068,23 @@ UINT WINAPI MsiEnumPatchesW( LPCWSTR szProduct, DWORD iPatchIndex,
iPatchIndex
,
lpPatchBuf
,
lpTransformsBuf
,
pcchTransformsBuf
);
return
ERROR_NO_MORE_ITEMS
;
}
UINT
WINAPI
MsiEnumProductsExA
(
LPCSTR
szProductCode
,
LPCSTR
szUserSid
,
DWORD
dwContext
,
DWORD
dwIndex
,
LPSTR
szInstalledProductCode
,
MSIINSTALLCONTEXT
*
pdwInstalledContext
,
LPSTR
szSid
,
LPDWORD
pcchSid
)
{
FIXME
(
"%s %s %d %d %p %p %p %p
\n
"
,
debugstr_a
(
szProductCode
),
debugstr_a
(
szUserSid
),
dwContext
,
dwIndex
,
szInstalledProductCode
,
pdwInstalledContext
,
szSid
,
pcchSid
);
return
ERROR_NO_MORE_ITEMS
;
}
UINT
WINAPI
MsiEnumProductsExW
(
LPCWSTR
szProductCode
,
LPCWSTR
szUserSid
,
DWORD
dwContext
,
DWORD
dwIndex
,
LPWSTR
szInstalledProductCode
,
MSIINSTALLCONTEXT
*
pdwInstalledContext
,
LPWSTR
szSid
,
LPDWORD
pcchSid
)
{
FIXME
(
"%s %s %d %d %p %p %p %p
\n
"
,
debugstr_w
(
szProductCode
),
debugstr_w
(
szUserSid
),
dwContext
,
dwIndex
,
szInstalledProductCode
,
pdwInstalledContext
,
szSid
,
pcchSid
);
return
ERROR_NO_MORE_ITEMS
;
}
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