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
199a26c8
Commit
199a26c8
authored
Dec 14, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Dec 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add a stub implementation of MsiGetPatchInfoEx.
parent
7cddc579
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 @
199a26c8
...
@@ -1190,6 +1190,28 @@ done:
...
@@ -1190,6 +1190,28 @@ done:
return
r
;
return
r
;
}
}
UINT
WINAPI
MsiGetPatchInfoExA
(
LPCSTR
szPatchCode
,
LPCSTR
szProductCode
,
LPCSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
LPCSTR
szProperty
,
LPSTR
lpValue
,
DWORD
*
pcchValue
)
{
FIXME
(
"(%s, %s, %s, %d, %s, %p, %p): stub!
\n
"
,
debugstr_a
(
szPatchCode
),
debugstr_a
(
szProductCode
),
debugstr_a
(
szUserSid
),
dwContext
,
debugstr_a
(
szProperty
),
lpValue
,
pcchValue
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiGetPatchInfoExW
(
LPCWSTR
szPatchCode
,
LPCWSTR
szProductCode
,
LPCWSTR
szUserSid
,
MSIINSTALLCONTEXT
dwContext
,
LPCWSTR
szProperty
,
LPWSTR
lpValue
,
DWORD
*
pcchValue
)
{
FIXME
(
"(%s, %s, %s, %d, %s, %p, %p): stub!
\n
"
,
debugstr_w
(
szPatchCode
),
debugstr_w
(
szProductCode
),
debugstr_w
(
szUserSid
),
dwContext
,
debugstr_w
(
szProperty
),
lpValue
,
pcchValue
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiEnableLogA
(
DWORD
dwLogMode
,
LPCSTR
szLogFile
,
DWORD
attributes
)
UINT
WINAPI
MsiEnableLogA
(
DWORD
dwLogMode
,
LPCSTR
szLogFile
,
DWORD
attributes
)
{
{
LPWSTR
szwLogFile
=
NULL
;
LPWSTR
szwLogFile
=
NULL
;
...
...
dlls/msi/msi.spec
View file @
199a26c8
...
@@ -236,8 +236,8 @@
...
@@ -236,8 +236,8 @@
240 stub MsiApplyMultiplePatchesW
240 stub MsiApplyMultiplePatchesW
241 stub MsiExtractPatchXMLDataA
241 stub MsiExtractPatchXMLDataA
242 stub MsiExtractPatchXMLDataW
242 stub MsiExtractPatchXMLDataW
243 st
ub MsiGetPatchInfoExA
243 st
dcall MsiGetPatchInfoExA(str str str long str ptr ptr)
244 st
ub MsiGetPatchInfoExW
244 st
dcall MsiGetPatchInfoExW(wstr wstr wstr long wstr ptr ptr)
245 stdcall MsiEnumProductsExA(str str long long ptr ptr ptr ptr)
245 stdcall MsiEnumProductsExA(str str long long ptr ptr ptr ptr)
246 stdcall MsiEnumProductsExW(wstr wstr long long ptr ptr ptr ptr)
246 stdcall MsiEnumProductsExW(wstr wstr long long ptr ptr ptr ptr)
247 stdcall MsiGetProductInfoExA(str str long str ptr ptr)
247 stdcall MsiGetProductInfoExA(str str long str ptr ptr)
...
...
include/msi.h
View file @
199a26c8
...
@@ -497,6 +497,10 @@ UINT WINAPI MsiGetProductInfoExA(LPCSTR, LPCSTR, MSIINSTALLCONTEXT, LPCSTR, LPST
...
@@ -497,6 +497,10 @@ UINT WINAPI MsiGetProductInfoExA(LPCSTR, LPCSTR, MSIINSTALLCONTEXT, LPCSTR, LPST
UINT
WINAPI
MsiGetProductInfoExW
(
LPCWSTR
,
LPCWSTR
,
MSIINSTALLCONTEXT
,
LPCWSTR
,
LPWSTR
,
LPDWORD
);
UINT
WINAPI
MsiGetProductInfoExW
(
LPCWSTR
,
LPCWSTR
,
MSIINSTALLCONTEXT
,
LPCWSTR
,
LPWSTR
,
LPDWORD
);
#define MsiGetProductInfoEx WINELIB_NAME_AW(MsiGetProductInfoEx)
#define MsiGetProductInfoEx WINELIB_NAME_AW(MsiGetProductInfoEx)
UINT
WINAPI
MsiGetPatchInfoExA
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
MSIINSTALLCONTEXT
,
LPCSTR
,
LPSTR
,
LPDWORD
);
UINT
WINAPI
MsiGetPatchInfoExW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
MSIINSTALLCONTEXT
,
LPCWSTR
,
LPWSTR
,
LPDWORD
);
#define MsiGetPatchInfoEx WINELIB_NAME_AW(MsiGetPatchInfoEx)
UINT
WINAPI
MsiEnableLogA
(
DWORD
,
LPCSTR
,
DWORD
);
UINT
WINAPI
MsiEnableLogA
(
DWORD
,
LPCSTR
,
DWORD
);
UINT
WINAPI
MsiEnableLogW
(
DWORD
,
LPCWSTR
,
DWORD
);
UINT
WINAPI
MsiEnableLogW
(
DWORD
,
LPCWSTR
,
DWORD
);
#define MsiEnableLog WINELIB_NAME_AW(MsiEnableLog)
#define MsiEnableLog WINELIB_NAME_AW(MsiEnableLog)
...
...
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