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
d3d5ad6b
Commit
d3d5ad6b
authored
Sep 06, 2005
by
Aric Stewart
Committed by
Alexandre Julliard
Sep 06, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub implementations for MsiEnumPatchesA/W.
parent
00efadd9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
2 deletions
+28
-2
msi.c
dlls/msi/msi.c
+22
-0
msi.spec
dlls/msi/msi.spec
+2
-2
msi.h
include/msi.h
+4
-0
No files found.
dlls/msi/msi.c
View file @
d3d5ad6b
...
...
@@ -1752,3 +1752,25 @@ UINT WINAPI MsiReinstallFeatureA( LPCSTR szProduct, LPCSTR szFeature,
dwReinstallMode
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiEnumPatchesA [MSI.@]
*/
UINT
WINAPI
MsiEnumPatchesA
(
LPCSTR
szProduct
,
DWORD
iPatchIndex
,
LPSTR
lpPatchBuf
,
LPSTR
lpTransformsBuf
,
DWORD
*
pcchTransformsBuf
)
{
FIXME
(
"%s %ld %p %p %p
\n
"
,
debugstr_a
(
szProduct
),
iPatchIndex
,
lpPatchBuf
,
lpTransformsBuf
,
pcchTransformsBuf
);
return
ERROR_NO_MORE_ITEMS
;
}
/***********************************************************************
* MsiEnumPatchesW [MSI.@]
*/
UINT
WINAPI
MsiEnumPatchesW
(
LPCWSTR
szProduct
,
DWORD
iPatchIndex
,
LPWSTR
lpPatchBuf
,
LPWSTR
lpTransformsBuf
,
DWORD
*
pcchTransformsBuf
)
{
FIXME
(
"%s %ld %p %p %p
\n
"
,
debugstr_w
(
szProduct
),
iPatchIndex
,
lpPatchBuf
,
lpTransformsBuf
,
pcchTransformsBuf
);
return
ERROR_NO_MORE_ITEMS
;
}
dlls/msi/msi.spec
View file @
d3d5ad6b
...
...
@@ -173,8 +173,8 @@
177 stub MsiAdvertiseScriptW
178 stub MsiGetPatchInfoA
179 stub MsiGetPatchInfoW
180 st
ub MsiEnumPatchesA
181 st
ub MsiEnumPatchesW
180 st
dcall MsiEnumPatchesA(str long ptr ptr ptr)
181 st
dcall MsiEnumPatchesW(str long ptr ptr ptr)
182 stdcall -private DllGetVersion(ptr)
183 stub MsiGetProductCodeFromPackageCodeA
184 stub MsiGetProductCodeFromPackageCodeW
...
...
include/msi.h
View file @
d3d5ad6b
...
...
@@ -522,6 +522,10 @@ UINT WINAPI MsiSourceListAddMediaDiskA(LPCSTR, LPCSTR, MSIINSTALLCONTEXT, DWORD,
UINT
WINAPI
MsiSourceListAddMediaDiskW
(
LPCWSTR
,
LPCWSTR
,
MSIINSTALLCONTEXT
,
DWORD
,
DWORD
,
LPCWSTR
,
LPCWSTR
);
#define MsiSourceListAddMediaDisk WINELIB_NAME_AW(MsiSourceListAddMediaDisk)
UINT
WINAPI
MsiEnumPatchesA
(
LPCSTR
,
DWORD
,
LPSTR
,
LPSTR
,
DWORD
*
);
UINT
WINAPI
MsiEnumPatchesW
(
LPCWSTR
,
DWORD
,
LPWSTR
,
LPWSTR
,
DWORD
*
);
#define MsiEnumPatches WINELIB_NAME_AW(MsiEnumPatches)
/* Non Unicode */
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
(
void
);
...
...
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