Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
9b95c27c
Commit
9b95c27c
authored
18 years ago
by
Michael McCormack
Committed by
Alexandre Julliard
18 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msi: Remove some unused functions.
parent
4a32845a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/msi/alter.c
+2
-20
2 additions, 20 deletions
dlls/msi/alter.c
dlls/msi/delete.c
+2
-20
2 additions, 20 deletions
dlls/msi/delete.c
dlls/msi/join.c
+2
-20
2 additions, 20 deletions
dlls/msi/join.c
with
6 additions
and
60 deletions
dlls/msi/alter.c
+
2
−
20
View file @
9b95c27c
...
...
@@ -58,24 +58,6 @@ static UINT ALTER_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, ISt
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
ALTER_set_int
(
struct
tagMSIVIEW
*
view
,
UINT
row
,
UINT
col
,
UINT
val
)
{
MSIALTERVIEW
*
av
=
(
MSIALTERVIEW
*
)
view
;
TRACE
(
"%p %d %d %04x
\n
"
,
av
,
row
,
col
,
val
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
ALTER_insert_row
(
struct
tagMSIVIEW
*
view
,
MSIRECORD
*
record
)
{
MSIALTERVIEW
*
av
=
(
MSIALTERVIEW
*
)
view
;
TRACE
(
"%p %p
\n
"
,
av
,
record
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
ALTER_execute
(
struct
tagMSIVIEW
*
view
,
MSIRECORD
*
record
)
{
MSIALTERVIEW
*
av
=
(
MSIALTERVIEW
*
)
view
;
...
...
@@ -146,8 +128,8 @@ static const MSIVIEWOPS alter_ops =
{
ALTER_fetch_int
,
ALTER_fetch_stream
,
ALTER_set_int
,
ALTER_insert_row
,
NULL
,
NULL
,
ALTER_execute
,
ALTER_close
,
ALTER_get_dimensions
,
...
...
This diff is collapsed.
Click to expand it.
dlls/msi/delete.c
+
2
−
20
View file @
9b95c27c
...
...
@@ -73,24 +73,6 @@ static UINT DELETE_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IS
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
DELETE_set_int
(
struct
tagMSIVIEW
*
view
,
UINT
row
,
UINT
col
,
UINT
val
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %d %d %04x
\n
"
,
dv
,
row
,
col
,
val
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
DELETE_insert_row
(
struct
tagMSIVIEW
*
view
,
MSIRECORD
*
record
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %p
\n
"
,
dv
,
record
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
DELETE_execute
(
struct
tagMSIVIEW
*
view
,
MSIRECORD
*
record
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
...
...
@@ -195,8 +177,8 @@ static const MSIVIEWOPS delete_ops =
{
DELETE_fetch_int
,
DELETE_fetch_stream
,
DELETE_set_int
,
DELETE_insert_row
,
NULL
,
NULL
,
DELETE_execute
,
DELETE_close
,
DELETE_get_dimensions
,
...
...
This diff is collapsed.
Click to expand it.
dlls/msi/join.c
+
2
−
20
View file @
9b95c27c
...
...
@@ -103,24 +103,6 @@ static UINT JOIN_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStr
return
table
->
ops
->
fetch_stream
(
table
,
row
,
col
,
stm
);
}
static
UINT
JOIN_set_int
(
struct
tagMSIVIEW
*
view
,
UINT
row
,
UINT
col
,
UINT
val
)
{
MSIJOINVIEW
*
jv
=
(
MSIJOINVIEW
*
)
view
;
TRACE
(
"%p %d %d %04x
\n
"
,
jv
,
row
,
col
,
val
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
JOIN_insert_row
(
struct
tagMSIVIEW
*
view
,
MSIRECORD
*
record
)
{
MSIJOINVIEW
*
jv
=
(
MSIJOINVIEW
*
)
view
;
TRACE
(
"%p %p
\n
"
,
jv
,
record
);
return
ERROR_FUNCTION_FAILED
;
}
static
int
join_key_compare
(
const
void
*
l
,
const
void
*
r
)
{
const
UINT
*
left
=
l
,
*
right
=
r
;
...
...
@@ -345,8 +327,8 @@ static const MSIVIEWOPS join_ops =
{
JOIN_fetch_int
,
JOIN_fetch_stream
,
JOIN_set_int
,
JOIN_insert_row
,
NULL
,
NULL
,
JOIN_execute
,
JOIN_close
,
JOIN_get_dimensions
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment