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
1484c627
Commit
1484c627
authored
Oct 08, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Oct 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation of MsiDetermineApplicablePatches.
parent
8128d97f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
2 deletions
+47
-2
msi.c
dlls/msi/msi.c
+18
-0
msi.spec
dlls/msi/msi.spec
+2
-2
msi.h
include/msi.h
+27
-0
No files found.
dlls/msi/msi.c
View file @
1484c627
...
...
@@ -372,6 +372,24 @@ done:
return
r
;
}
UINT
WINAPI
MsiDetermineApplicablePatchesA
(
LPCSTR
szProductPackagePath
,
DWORD
cPatchInfo
,
PMSIPATCHSEQUENCEINFOA
pPatchInfo
)
{
FIXME
(
"(%s, %d, %p): stub!
\n
"
,
debugstr_a
(
szProductPackagePath
),
cPatchInfo
,
pPatchInfo
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiDetermineApplicablePatchesW
(
LPCWSTR
szProductPackagePath
,
DWORD
cPatchInfo
,
PMSIPATCHSEQUENCEINFOW
pPatchInfo
)
{
FIXME
(
"(%s, %d, %p): stub!
\n
"
,
debugstr_w
(
szProductPackagePath
),
cPatchInfo
,
pPatchInfo
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
static
UINT
msi_open_package
(
LPCWSTR
product
,
MSIINSTALLCONTEXT
context
,
MSIPACKAGE
**
package
)
{
...
...
dlls/msi/msi.spec
View file @
1484c627
...
...
@@ -270,8 +270,8 @@
274 stdcall MsiSourceListAddMediaDiskW(wstr wstr long long long wstr wstr)
275 stub MsiSourceListClearMediaDiskA
276 stub MsiSourceListClearMediaDiskW
277 st
ub MsiDetermineApplicablePatchesA
278 st
ub MsiDetermineApplicablePatchesW
277 st
dcall MsiDetermineApplicablePatchesA(str long ptr)
278 st
dcall MsiDetermineApplicablePatchesW(wstr long ptr)
279 stub MsiMessageBoxExA
280 stub MsiMessageBoxExW
281 stdcall MsiSetExternalUIRecord(ptr long ptr ptr)
...
...
include/msi.h
View file @
1484c627
...
...
@@ -201,6 +201,29 @@ typedef struct _MSIFILEHASHINFO {
ULONG
dwData
[
4
];
}
MSIFILEHASHINFO
,
*
PMSIFILEHASHINFO
;
typedef
enum
tagMSIPATCHDATATYPE
{
MSIPATCH_DATATYPE_PATCHFILE
=
0
,
MSIPATCH_DATATYPE_XMLPATH
=
1
,
MSIPATCH_DATATYPE_XMLBLOB
=
2
,
}
MSIPATCHDATATYPE
,
*
PMSIPATCHDATATYPE
;
typedef
struct
tagMSIPATCHSEQUENCEINFOA
{
LPCSTR
szPatchData
;
MSIPATCHDATATYPE
ePatchDataType
;
DWORD
dwOrder
;
UINT
uStatus
;
}
MSIPATCHSEQUENCEINFOA
,
*
PMSIPATCHSEQUENCEINFOA
;
typedef
struct
tagMSIPATCHSEQUENCEINFOW
{
LPCWSTR
szPatchData
;
MSIPATCHDATATYPE
ePatchDataType
;
DWORD
dwOrder
;
UINT
uStatus
;
}
MSIPATCHSEQUENCEINFOW
,
*
PMSIPATCHSEQUENCEINFOW
;
#define MAX_FEATURE_CHARS 38
/* Strings defined in msi.h */
...
...
@@ -607,6 +630,10 @@ UINT WINAPI MsiInstallMissingComponentA(LPCSTR, LPCSTR, INSTALLSTATE);
UINT
WINAPI
MsiInstallMissingComponentW
(
LPCWSTR
,
LPCWSTR
,
INSTALLSTATE
);
#define MsiInstallMissingComponent WINELIB_NAME_AW(MsiInstallMissingComponent)
UINT
WINAPI
MsiDetermineApplicablePatchesA
(
LPCSTR
,
DWORD
,
PMSIPATCHSEQUENCEINFOA
);
UINT
WINAPI
MsiDetermineApplicablePatchesW
(
LPCWSTR
,
DWORD
,
PMSIPATCHSEQUENCEINFOW
);
#define MsiDetermineApplicablePatches WINELIB_NAME_AW(MsiDetermineApplicablePatches)
/* 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