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
e35bd050
Commit
e35bd050
authored
Feb 13, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Feb 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add stub implementation of MsiIsProductElevatedA/W.
parent
0d9e09d8
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 @
e35bd050
...
...
@@ -2513,3 +2513,25 @@ UINT WINAPI MsiAdvertiseScriptA( LPCSTR szScriptFile, DWORD dwFlags,
debugstr_a
(
szScriptFile
),
dwFlags
,
phRegData
,
fRemoveItems
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* MsiIsProductElevatedW [MSI.@]
*/
UINT
WINAPI
MsiIsProductElevatedW
(
LPCWSTR
szProduct
,
BOOL
*
pfElevated
)
{
FIXME
(
"%s %p - stub
\n
"
,
debugstr_w
(
szProduct
),
pfElevated
);
*
pfElevated
=
TRUE
;
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiIsProductElevatedA [MSI.@]
*/
UINT
WINAPI
MsiIsProductElevatedA
(
LPCSTR
szProduct
,
BOOL
*
pfElevated
)
{
FIXME
(
"%s %p - stub
\n
"
,
debugstr_a
(
szProduct
),
pfElevated
);
*
pfElevated
=
TRUE
;
return
ERROR_SUCCESS
;
}
dlls/msi/msi.spec
View file @
e35bd050
...
...
@@ -207,8 +207,8 @@
211 stdcall MsiSourceListAddSourceW(wstr wstr long wstr)
212 stub MsiSourceListForceResolutionA
213 stub MsiSourceListForceResolutionW
214 st
ub MsiIsProductElevatedA
215 st
ub MsiIsProductElevatedW
214 st
dcall MsiIsProductElevatedA(str ptr)
215 st
dcall MsiIsProductElevatedW(wstr ptr)
216 stdcall MsiGetShortcutTargetA(str ptr ptr ptr)
217 stdcall MsiGetShortcutTargetW(wstr ptr ptr ptr)
218 stdcall MsiGetFileHashA(str long ptr)
...
...
include/msi.h
View file @
e35bd050
...
...
@@ -569,6 +569,10 @@ UINT WINAPI MsiAdvertiseScriptA(LPCSTR, DWORD, PHKEY, BOOL);
UINT
WINAPI
MsiAdvertiseScriptW
(
LPCWSTR
,
DWORD
,
PHKEY
,
BOOL
);
#define MsiAdvertiseScript WINELIB_NAME_AW(MsiAdvertiseScript)
UINT
WINAPI
MsiIsProductElevatedA
(
LPCSTR
,
BOOL
*
);
UINT
WINAPI
MsiIsProductElevatedW
(
LPCWSTR
,
BOOL
*
);
#define MsiIsProductElevated WINELIB_NAME_AW(MsiIsProductElevated)
/* Non Unicode */
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
(
void
);
...
...
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