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
Tayshawnna Jackson
wine
Commits
f8089da4
Commit
f8089da4
authored
10 years ago
by
Austin English
Committed by
Alexandre Julliard
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msi: Add stubs for MsiEnumClientsExA/W.
parent
d2d2d608
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.spec
+2
-2
2 additions, 2 deletions
dlls/msi/msi.spec
dlls/msi/registry.c
+18
-0
18 additions, 0 deletions
dlls/msi/registry.c
include/msi.h
+4
-0
4 additions, 0 deletions
include/msi.h
with
24 additions
and
2 deletions
dlls/msi/msi.spec
+
2
−
2
View file @
f8089da4
...
...
@@ -284,8 +284,8 @@
288 stub MsiSetOfflineContextW
289 stdcall MsiEnumComponentsExA(str long long ptr ptr ptr ptr)
290 stdcall MsiEnumComponentsExW(wstr long long ptr ptr ptr ptr)
291 st
ub
MsiEnumClientsExA
292 st
ub
MsiEnumClientsExW
291 st
dcall
MsiEnumClientsExA
(str str long long ptr ptr ptr ptr)
292 st
dcall
MsiEnumClientsExW
(wstr wstr long long ptr ptr ptr ptr)
293 stub MsiGetComponentPathExA
294 stub MsiGetComponentPathExW
295 stub QueryInstanceCount
...
...
This diff is collapsed.
Click to expand it.
dlls/msi/registry.c
+
18
−
0
View file @
f8089da4
...
...
@@ -1503,6 +1503,24 @@ UINT WINAPI MsiEnumClientsW(LPCWSTR szComponent, DWORD index, LPWSTR szProduct)
return
r
;
}
UINT
WINAPI
MsiEnumClientsExA
(
LPCSTR
component
,
LPCSTR
usersid
,
DWORD
ctx
,
DWORD
index
,
CHAR
installed_product
[
GUID_SIZE
],
MSIINSTALLCONTEXT
*
installed_ctx
,
LPSTR
sid
,
LPDWORD
sid_len
)
{
FIXME
(
"%s, %s, %u, %u, %p, %p, %p, %p
\n
"
,
debugstr_a
(
component
),
debugstr_a
(
usersid
),
ctx
,
index
,
installed_product
,
installed_ctx
,
sid
,
sid_len
);
return
ERROR_ACCESS_DENIED
;
}
UINT
WINAPI
MsiEnumClientsExW
(
LPCWSTR
component
,
LPCWSTR
usersid
,
DWORD
ctx
,
DWORD
index
,
WCHAR
installed_product
[
GUID_SIZE
],
MSIINSTALLCONTEXT
*
installed_ctx
,
LPWSTR
sid
,
LPDWORD
sid_len
)
{
FIXME
(
"%s, %s, %u, %u, %p, %p, %p, %p
\n
"
,
debugstr_w
(
component
),
debugstr_w
(
usersid
),
ctx
,
index
,
installed_product
,
installed_ctx
,
sid
,
sid_len
);
return
ERROR_ACCESS_DENIED
;
}
static
UINT
MSI_EnumComponentQualifiers
(
LPCWSTR
szComponent
,
DWORD
iIndex
,
awstring
*
lpQualBuf
,
LPDWORD
pcchQual
,
awstring
*
lpAppBuf
,
LPDWORD
pcchAppBuf
)
...
...
This diff is collapsed.
Click to expand it.
include/msi.h
+
4
−
0
View file @
f8089da4
...
...
@@ -463,6 +463,10 @@ UINT WINAPI MsiEnumClientsA(LPCSTR, DWORD, LPSTR);
UINT
WINAPI
MsiEnumClientsW
(
LPCWSTR
,
DWORD
,
LPWSTR
);
#define MsiEnumClients WINELIB_NAME_AW(MsiEnumClients)
UINT
WINAPI
MsiEnumClientsExA
(
LPCSTR
,
LPCSTR
,
DWORD
,
DWORD
,
CHAR
*
,
MSIINSTALLCONTEXT
*
,
LPSTR
,
LPDWORD
);
UINT
WINAPI
MsiEnumClientsExW
(
LPCWSTR
,
LPCWSTR
,
DWORD
,
DWORD
,
WCHAR
*
,
MSIINSTALLCONTEXT
*
,
LPWSTR
,
LPDWORD
);
#define MsiEnumClientsEx WINELIB_NAME_AW(MsiEnumClientsEx)
UINT
WINAPI
MsiOpenPackageA
(
LPCSTR
,
MSIHANDLE
*
);
UINT
WINAPI
MsiOpenPackageW
(
LPCWSTR
,
MSIHANDLE
*
);
#define MsiOpenPackage WINELIB_NAME_AW(MsiOpenPackage)
...
...
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