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
9b95c27c
Commit
9b95c27c
authored
Oct 26, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Oct 26, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Remove some unused functions.
parent
4a32845a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
60 deletions
+6
-60
alter.c
dlls/msi/alter.c
+2
-20
delete.c
dlls/msi/delete.c
+2
-20
join.c
dlls/msi/join.c
+2
-20
No files found.
dlls/msi/alter.c
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
,
...
...
dlls/msi/delete.c
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
,
...
...
dlls/msi/join.c
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
,
...
...
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