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
36c4ec8f
Commit
36c4ec8f
authored
Nov 06, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fixed definition of the MSIITERHANDLE type.
parent
0cc74835
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
msipriv.h
dlls/msi/msipriv.h
+1
-1
table.c
dlls/msi/table.c
+2
-2
No files found.
dlls/msi/msipriv.h
View file @
36c4ec8f
...
...
@@ -109,7 +109,7 @@ typedef struct tagMSIRECORD
MSIFIELD
fields
[
1
];
/* nb. array size is count+1 */
}
MSIRECORD
;
typedef
void
*
MSIITERHANDLE
;
typedef
const
struct
tagMSICOLUMNHASHENTRY
*
MSIITERHANDLE
;
typedef
struct
tagMSIVIEWOPS
{
...
...
dlls/msi/table.c
View file @
36c4ec8f
...
...
@@ -1587,12 +1587,12 @@ static UINT TABLE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
if
(
!*
handle
)
entry
=
tv
->
columns
[
col
-
1
].
hash_table
[
val
%
MSITABLE_HASH_TABLE_SIZE
];
else
entry
=
(
(
const
MSICOLUMNHASHENTRY
*
)
*
handle
)
->
next
;
entry
=
(
*
handle
)
->
next
;
while
(
entry
&&
entry
->
value
!=
val
)
entry
=
entry
->
next
;
*
handle
=
(
MSIITERHANDLE
)
entry
;
*
handle
=
entry
;
if
(
!
entry
)
return
ERROR_NO_MORE_ITEMS
;
...
...
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