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
20557b8c
Commit
20557b8c
authored
Jul 09, 2004
by
Aric Stewart
Committed by
Alexandre Julliard
Jul 09, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a stub for MsiModifyView, fix a couple of bugs.
parent
3ece2461
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
msi.spec
dlls/msi/msi.spec
+1
-1
msiquery.c
dlls/msi/msiquery.c
+9
-1
record.c
dlls/msi/record.c
+3
-0
No files found.
dlls/msi/msi.spec
View file @
20557b8c
...
...
@@ -160,7 +160,7 @@
160 stdcall MsiViewFetch(long ptr)
161 stub MsiViewGetErrorA
162 stub MsiViewGetErrorW
163 st
ub MsiViewModify
163 st
dcall MsiViewModify(long long long)
164 stdcall MsiDatabaseIsTablePersistentA(long str)
165 stdcall MsiDatabaseIsTablePersistentW(long wstr)
166 stdcall MsiViewGetColumnInfo(long long ptr)
...
...
dlls/msi/msiquery.c
View file @
20557b8c
...
...
@@ -194,7 +194,8 @@ UINT WINAPI MsiViewFetch(MSIHANDLE hView, MSIHANDLE *record)
ERR
(
"Error getting column type for %d
\n
"
,
i
);
continue
;
}
if
(
type
!=
MSITYPE_BINARY
)
if
((
type
!=
MSITYPE_BINARY
)
&&
(
type
!=
(
MSITYPE_BINARY
|
MSITYPE_NULLABLE
)))
{
ret
=
view
->
ops
->
fetch_int
(
view
,
query
->
row
,
i
,
&
ival
);
if
(
ret
)
...
...
@@ -424,3 +425,10 @@ UINT WINAPI MsiGetComponentStateW(MSIHANDLE hInstall, LPWSTR szFeature,
FIXME
(
"%ld %s %p %p
\n
"
,
hInstall
,
debugstr_w
(
szFeature
),
piInstalled
,
piAction
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiViewModify
(
MSIHANDLE
hView
,
MSIMODIFY
eModifyMode
,
MSIHANDLE
hRecord
)
{
FIXME
(
"%ld %x %ld
\n
"
,
hView
,
eModifyMode
,
hRecord
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
dlls/msi/record.c
View file @
20557b8c
...
...
@@ -434,7 +434,10 @@ UINT WINAPI MsiRecordReadStream(MSIHANDLE handle, unsigned int iField, char *buf
return
ERROR_INVALID_FIELD
;
if
(
rec
->
fields
[
iField
].
type
!=
MSIFIELD_STREAM
)
{
*
sz
=
0
;
return
ERROR_INVALID_FIELD
;
}
stm
=
rec
->
fields
[
iField
].
u
.
stream
;
if
(
!
stm
)
...
...
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