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
9a59ee76
Commit
9a59ee76
authored
Jun 10, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Make all the ops structures static and const.
parent
ba5efc6c
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
create.c
dlls/msi/create.c
+1
-1
delete.c
dlls/msi/delete.c
+1
-1
distinct.c
dlls/msi/distinct.c
+1
-1
insert.c
dlls/msi/insert.c
+1
-1
msipriv.h
dlls/msi/msipriv.h
+1
-1
order.c
dlls/msi/order.c
+1
-1
select.c
dlls/msi/select.c
+1
-1
table.c
dlls/msi/table.c
+1
-1
where.c
dlls/msi/where.c
+1
-1
No files found.
dlls/msi/create.c
View file @
9a59ee76
...
...
@@ -207,7 +207,7 @@ static UINT CREATE_delete( struct tagMSIVIEW *view )
}
MSIVIEWOPS
create_ops
=
static
const
MSIVIEWOPS
create_ops
=
{
CREATE_fetch_int
,
NULL
,
...
...
dlls/msi/delete.c
View file @
9a59ee76
...
...
@@ -191,7 +191,7 @@ static UINT DELETE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
}
MSIVIEWOPS
delete_ops
=
static
const
MSIVIEWOPS
delete_ops
=
{
DELETE_fetch_int
,
DELETE_fetch_stream
,
...
...
dlls/msi/distinct.c
View file @
9a59ee76
...
...
@@ -268,7 +268,7 @@ static UINT DISTINCT_find_matching_rows( struct tagMSIVIEW *view, UINT col,
}
MSIVIEWOPS
distinct_ops
=
static
const
MSIVIEWOPS
distinct_ops
=
{
DISTINCT_fetch_int
,
NULL
,
...
...
dlls/msi/insert.c
View file @
9a59ee76
...
...
@@ -223,7 +223,7 @@ static UINT INSERT_find_matching_rows( struct tagMSIVIEW *view, UINT col,
}
MSIVIEWOPS
insert_ops
=
static
const
MSIVIEWOPS
insert_ops
=
{
INSERT_fetch_int
,
NULL
,
...
...
dlls/msi/msipriv.h
View file @
9a59ee76
...
...
@@ -189,7 +189,7 @@ typedef struct tagMSIVIEWOPS
struct
tagMSIVIEW
{
MSIOBJECTHDR
hdr
;
MSIVIEWOPS
*
ops
;
const
MSIVIEWOPS
*
ops
;
};
struct
msi_dialog_tag
;
...
...
dlls/msi/order.c
View file @
9a59ee76
...
...
@@ -268,7 +268,7 @@ static UINT ORDER_find_matching_rows( struct tagMSIVIEW *view, UINT col,
}
MSIVIEWOPS
order_ops
=
static
const
MSIVIEWOPS
order_ops
=
{
ORDER_fetch_int
,
NULL
,
...
...
dlls/msi/select.c
View file @
9a59ee76
...
...
@@ -215,7 +215,7 @@ static UINT SELECT_find_matching_rows( struct tagMSIVIEW *view, UINT col,
}
MSIVIEWOPS
select_ops
=
static
const
MSIVIEWOPS
select_ops
=
{
SELECT_fetch_int
,
SELECT_fetch_stream
,
...
...
dlls/msi/table.c
View file @
9a59ee76
...
...
@@ -1494,7 +1494,7 @@ static UINT TABLE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
}
MSIVIEWOPS
table_ops
=
static
const
MSIVIEWOPS
table_ops
=
{
TABLE_fetch_int
,
TABLE_fetch_stream
,
...
...
dlls/msi/where.c
View file @
9a59ee76
...
...
@@ -408,7 +408,7 @@ static UINT WHERE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
}
MSIVIEWOPS
where_ops
=
static
const
MSIVIEWOPS
where_ops
=
{
WHERE_fetch_int
,
WHERE_fetch_stream
,
...
...
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