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
d48f3b60
Commit
d48f3b60
authored
Nov 05, 2003
by
Mike McCormack
Committed by
Alexandre Julliard
Nov 05, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for MsiVerifyPackage.
parent
da10653f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
+18
-2
msi.c
dlls/msi/msi.c
+12
-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 @
d48f3b60
...
...
@@ -801,6 +801,18 @@ UINT WINAPI MsiGetProductPropertyW( MSIHANDLE hProduct, LPCWSTR szProperty,
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiVerifyPackageA
(
LPCSTR
szPackage
)
{
FIXME
(
"%s
\n
"
,
debugstr_a
(
szPackage
)
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiVerifyPackageW
(
LPCWSTR
szPackage
)
{
FIXME
(
"%s
\n
"
,
debugstr_w
(
szPackage
)
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
HRESULT
WINAPI
MSI_DllGetVersion
(
DLLVERSIONINFO
*
pdvi
)
{
TRACE
(
"%p
\n
"
,
pdvi
);
...
...
dlls/msi/msi.spec
View file @
d48f3b60
...
...
@@ -153,8 +153,8 @@
153 stub MsiSummaryInfoSetPropertyW
154 stub MsiUseFeatureA
155 stub MsiUseFeatureW
156 st
ub MsiVerifyPackageA
157 st
ub MsiVerifyPackageW
156 st
dcall MsiVerifyPackageA(str)
157 st
dcall MsiVerifyPackageW(wstr)
158 stdcall MsiViewClose(long)
159 stdcall MsiViewExecute(long long)
160 stdcall MsiViewFetch(long ptr)
...
...
include/msi.h
View file @
d48f3b60
...
...
@@ -99,4 +99,8 @@ UINT WINAPI MsiProvideComponentFromDescriptorA(LPCSTR,LPSTR,DWORD*,DWORD*);
UINT
WINAPI
MsiProvideComponentFromDescriptorW
(
LPCWSTR
,
LPWSTR
,
DWORD
*
,
DWORD
*
);
#define MsiProvideComponentFromDescriptor WINELIB_NAME_AW(MsiProvideComponentFromDescriptor)
UINT
WINAPI
MsiVerifyPackageA
(
LPCSTR
);
UINT
WINAPI
MsiVerifyPackageW
(
LPCWSTR
);
#define MsiVerifyPackage WINELIB_NAME_AW(MsiVerifyPackage)
#endif
/* __WINE_MSI_H */
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