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
7df94f3b
Commit
7df94f3b
authored
Dec 08, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Dec 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix the type of the last parameter of MsiEnumPatchesEx.
parent
c1b2008d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
registry.c
dlls/msi/registry.c
+2
-2
msi.h
include/msi.h
+2
-2
No files found.
dlls/msi/registry.c
View file @
7df94f3b
...
...
@@ -1654,7 +1654,7 @@ UINT WINAPI MsiEnumRelatedProductsA(LPCSTR szUpgradeCode, DWORD dwReserved,
UINT
WINAPI
MsiEnumPatchesExA
(
LPCSTR
szProductCode
,
LPCSTR
szUserSid
,
DWORD
dwContext
,
DWORD
dwFilter
,
DWORD
dwIndex
,
LPSTR
szPatchCode
,
LPSTR
szTargetProductCode
,
MSIINSTALLCONTEXT
*
pdwTargetProductContext
,
LPSTR
szTargetUserSid
,
LP
STR
pcchTargetUserSid
)
LPSTR
szTargetUserSid
,
LP
DWORD
pcchTargetUserSid
)
{
FIXME
(
"(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p) stub!
\n
"
,
debugstr_a
(
szProductCode
),
debugstr_a
(
szUserSid
),
dwContext
,
dwFilter
,
...
...
@@ -1669,7 +1669,7 @@ UINT WINAPI MsiEnumPatchesExA(LPCSTR szProductCode, LPCSTR szUserSid,
UINT
WINAPI
MsiEnumPatchesExW
(
LPCWSTR
szProductCode
,
LPCWSTR
szUserSid
,
DWORD
dwContext
,
DWORD
dwFilter
,
DWORD
dwIndex
,
LPWSTR
szPatchCode
,
LPWSTR
szTargetProductCode
,
MSIINSTALLCONTEXT
*
pdwTargetProductContext
,
LPWSTR
szTargetUserSid
,
LP
WSTR
pcchTargetUserSid
)
LPWSTR
szTargetUserSid
,
LP
DWORD
pcchTargetUserSid
)
{
FIXME
(
"(%s, %s, %d, %d, %d, %p, %p, %p, %p, %p) stub!
\n
"
,
debugstr_w
(
szProductCode
),
debugstr_w
(
szUserSid
),
dwContext
,
dwFilter
,
...
...
include/msi.h
View file @
7df94f3b
...
...
@@ -605,9 +605,9 @@ 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
,
LP
STR
);
MSIINSTALLCONTEXT
*
,
LPSTR
,
LP
DWORD
);
UINT
WINAPI
MsiEnumPatchesExW
(
LPCWSTR
,
LPCWSTR
,
DWORD
,
DWORD
,
DWORD
,
LPWSTR
,
LPWSTR
,
MSIINSTALLCONTEXT
*
,
LPWSTR
,
LP
WSTR
);
MSIINSTALLCONTEXT
*
,
LPWSTR
,
LP
DWORD
);
#define MsiEnumPatchesEx WINELIB_NAME_AW(MsiEnumPatchesEx)
UINT
WINAPI
MsiGetFileHashA
(
LPCSTR
,
DWORD
,
PMSIFILEHASHINFO
);
...
...
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