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
8782fdba
Commit
8782fdba
authored
Aug 03, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Aug 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation of MsiEnumPatchesEx.
parent
e04a6620
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
2 deletions
+38
-2
msi.spec
dlls/msi/msi.spec
+2
-2
registry.c
dlls/msi/registry.c
+30
-0
msi.h
include/msi.h
+6
-0
No files found.
dlls/msi/msi.spec
View file @
8782fdba
...
...
@@ -262,8 +262,8 @@
266 stdcall MsiSourceListGetInfoW(wstr wstr long long wstr ptr ptr)
267 stdcall MsiSourceListSetInfoA(str str long long str str)
268 stdcall MsiSourceListSetInfoW(wstr wstr long long wstr wstr)
269 st
ub MsiEnumPatchesExA
270 st
ub MsiEnumPatchesExW
269 st
dcall MsiEnumPatchesExA(str str long long long ptr ptr ptr ptr ptr)
270 st
dcall MsiEnumPatchesExW(wstr wstr long long long ptr ptr ptr ptr ptr)
271 stdcall MsiSourceListEnumMediaDisksA(str str long long long ptr ptr ptr ptr ptr)
272 stdcall MsiSourceListEnumMediaDisksW(wstr wstr long long long ptr ptr ptr ptr ptr)
273 stdcall MsiSourceListAddMediaDiskA(str str long long long str str)
...
...
dlls/msi/registry.c
View file @
8782fdba
...
...
@@ -1734,6 +1734,36 @@ UINT WINAPI MsiEnumRelatedProductsA(LPCSTR szUpgradeCode, DWORD dwReserved,
}
/***********************************************************************
* MsiEnumPatchesExA [MSI.@]
*/
UINT
WINAPI
MsiEnumPatchesExA
(
LPCSTR
szProductCode
,
LPCSTR
szUserSid
,
DWORD
dwContext
,
DWORD
dwFilter
,
DWORD
dwIndex
,
LPSTR
szPatchCode
,
LPSTR
szTargetProductCode
,
MSIINSTALLCONTEXT
*
pdwTargetProductContext
,
LPSTR
szTargetUserSid
,
LPSTR
pcchTargetUserSid
)
{
FIXME
(
"(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p) stub!
\n
"
,
debugstr_a
(
szProductCode
),
debugstr_a
(
szUserSid
),
dwContext
,
dwFilter
,
dwIndex
,
szPatchCode
,
szTargetProductCode
,
pdwTargetProductContext
,
szTargetUserSid
,
pcchTargetUserSid
);
return
ERROR_NO_MORE_ITEMS
;
}
/***********************************************************************
* MsiEnumPatchesW [MSI.@]
*/
UINT
WINAPI
MsiEnumPatchesExW
(
LPCWSTR
szProductCode
,
LPCWSTR
szUserSid
,
DWORD
dwContext
,
DWORD
dwFilter
,
DWORD
dwIndex
,
LPWSTR
szPatchCode
,
LPWSTR
szTargetProductCode
,
MSIINSTALLCONTEXT
*
pdwTargetProductContext
,
LPWSTR
szTargetUserSid
,
LPWSTR
pcchTargetUserSid
)
{
FIXME
(
"(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p) stub!
\n
"
,
debugstr_w
(
szProductCode
),
debugstr_w
(
szUserSid
),
dwContext
,
dwFilter
,
dwIndex
,
szPatchCode
,
szTargetProductCode
,
pdwTargetProductContext
,
szTargetUserSid
,
pcchTargetUserSid
);
return
ERROR_NO_MORE_ITEMS
;
}
/***********************************************************************
* MsiEnumPatchesA [MSI.@]
*/
UINT
WINAPI
MsiEnumPatchesA
(
LPCSTR
szProduct
,
DWORD
iPatchIndex
,
...
...
include/msi.h
View file @
8782fdba
...
...
@@ -579,6 +579,12 @@ UINT WINAPI MsiEnumPatchesA(LPCSTR, DWORD, LPSTR, LPSTR, LPDWORD);
UINT
WINAPI
MsiEnumPatchesW
(
LPCWSTR
,
DWORD
,
LPWSTR
,
LPWSTR
,
LPDWORD
);
#define MsiEnumPatches WINELIB_NAME_AW(MsiEnumPatches)
UINT
WINAPI
MsiEnumPatchesExA
(
LPCSTR
,
LPCSTR
,
DWORD
,
DWORD
,
DWORD
,
LPSTR
,
LPSTR
,
MSIINSTALLCONTEXT
*
,
LPSTR
,
LPSTR
);
UINT
WINAPI
MsiEnumPatchesExW
(
LPCWSTR
,
LPCWSTR
,
DWORD
,
DWORD
,
DWORD
,
LPWSTR
,
LPWSTR
,
MSIINSTALLCONTEXT
*
,
LPWSTR
,
LPWSTR
);
#define MsiEnumPatchesEx WINELIB_NAME_AW(MsiEnumPatchesEx)
UINT
WINAPI
MsiGetFileHashA
(
LPCSTR
,
DWORD
,
PMSIFILEHASHINFO
);
UINT
WINAPI
MsiGetFileHashW
(
LPCWSTR
,
DWORD
,
PMSIFILEHASHINFO
);
#define MsiGetFileHash WINELIB_NAME_AW(MsiGetFileHash)
...
...
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