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
2694cf3f
Commit
2694cf3f
authored
Oct 17, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Oct 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add handling for MSIMODIFY_INSERT for the streams table.
parent
22743883
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
2 deletions
+30
-2
streams.c
dlls/msi/streams.c
+30
-2
No files found.
dlls/msi/streams.c
View file @
2694cf3f
...
...
@@ -280,8 +280,36 @@ static UINT STREAMS_get_column_info(struct tagMSIVIEW *view,
static
UINT
STREAMS_modify
(
struct
tagMSIVIEW
*
view
,
MSIMODIFY
eModifyMode
,
MSIRECORD
*
rec
,
UINT
row
)
{
FIXME
(
"(%p, %d, %p): stub!
\n
"
,
view
,
eModifyMode
,
rec
);
return
ERROR_SUCCESS
;
UINT
r
;
TRACE
(
"%p %d %p
\n
"
,
view
,
eModifyMode
,
rec
);
switch
(
eModifyMode
)
{
case
MSIMODIFY_INSERT
:
r
=
STREAMS_insert_row
(
view
,
rec
,
FALSE
);
break
;
case
MSIMODIFY_VALIDATE_NEW
:
case
MSIMODIFY_INSERT_TEMPORARY
:
case
MSIMODIFY_UPDATE
:
case
MSIMODIFY_REFRESH
:
case
MSIMODIFY_ASSIGN
:
case
MSIMODIFY_REPLACE
:
case
MSIMODIFY_MERGE
:
case
MSIMODIFY_DELETE
:
case
MSIMODIFY_VALIDATE
:
case
MSIMODIFY_VALIDATE_FIELD
:
case
MSIMODIFY_VALIDATE_DELETE
:
FIXME
(
"%p %d %p - mode not implemented
\n
"
,
view
,
eModifyMode
,
rec
);
r
=
ERROR_CALL_NOT_IMPLEMENTED
;
break
;
default:
r
=
ERROR_INVALID_DATA
;
}
return
r
;
}
static
UINT
STREAMS_delete
(
struct
tagMSIVIEW
*
view
)
...
...
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