Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
06e15ee9
Commit
06e15ee9
authored
Feb 03, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Feb 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Copy InstallerImpl_LastErrorRecord to use it for DatabaseImpl.
parent
9a92f9cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
automation.c
dlls/msi/automation.c
+20
-0
No files found.
dlls/msi/automation.c
View file @
06e15ee9
...
...
@@ -1138,6 +1138,21 @@ static HRESULT WINAPI ViewImpl_Invoke(
return
S_OK
;
}
static
HRESULT
DatabaseImpl_LastErrorRecord
(
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
if
(
!
(
wFlags
&
DISPATCH_METHOD
))
return
DISP_E_MEMBERNOTFOUND
;
FIXME
(
"
\n
"
);
VariantInit
(
pVarResult
);
return
S_OK
;
}
static
HRESULT
WINAPI
DatabaseImpl_Invoke
(
AutomationObject
*
This
,
DISPID
dispIdMember
,
...
...
@@ -1208,6 +1223,11 @@ static HRESULT WINAPI DatabaseImpl_Invoke(
else
return
DISP_E_MEMBERNOTFOUND
;
break
;
case
DISPID_INSTALLER_LASTERRORRECORD
:
return
DatabaseImpl_LastErrorRecord
(
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
default
:
return
DISP_E_MEMBERNOTFOUND
;
}
...
...
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