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
f8089da4
Commit
f8089da4
authored
Feb 03, 2015
by
Austin English
Committed by
Alexandre Julliard
Feb 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add stubs for MsiEnumClientsExA/W.
parent
d2d2d608
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
msi.spec
dlls/msi/msi.spec
+2
-2
registry.c
dlls/msi/registry.c
+18
-0
msi.h
include/msi.h
+4
-0
No files found.
dlls/msi/msi.spec
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
...
...
dlls/msi/registry.c
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
)
...
...
include/msi.h
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)
...
...
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