Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Mayr
wine
Commits
d48f3b60
Commit
d48f3b60
authored
21 years ago
by
Michael McCormack
Committed by
Alexandre Julliard
21 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stub implementation for MsiVerifyPackage.
parent
da10653f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/msi/msi.c
+12
-0
12 additions, 0 deletions
dlls/msi/msi.c
dlls/msi/msi.spec
+2
-2
2 additions, 2 deletions
dlls/msi/msi.spec
include/msi.h
+4
-0
4 additions, 0 deletions
include/msi.h
with
18 additions
and
2 deletions
dlls/msi/msi.c
+
12
−
0
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
);
...
...
This diff is collapsed.
Click to expand it.
dlls/msi/msi.spec
+
2
−
2
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)
...
...
This diff is collapsed.
Click to expand it.
include/msi.h
+
4
−
0
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 */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment