summaryrefslogtreecommitdiffstats
path: root/libmsi/update.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-12-03 11:15:33 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:30:32 +0100
commitbf8c5a031f7a791bd99d18aaa334bc6d2955b536 (patch)
treedc1d638534e92ae33648b9ed7f44bf553ac7e2f5 /libmsi/update.c
parent93de41a911d54b018b4d6d52728de6661562f79a (diff)
downloadmsitools-bf8c5a031f7a791bd99d18aaa334bc6d2955b536.tar.gz
msitools-bf8c5a031f7a791bd99d18aaa334bc6d2955b536.tar.xz
msitools-bf8c5a031f7a791bd99d18aaa334bc6d2955b536.zip
remove libmsi_query_modify
Diffstat (limited to 'libmsi/update.c')
-rw-r--r--libmsi/update.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libmsi/update.c b/libmsi/update.c
index accf3dd..5311f2d 100644
--- a/libmsi/update.c
+++ b/libmsi/update.c
@@ -167,16 +167,6 @@ static unsigned update_view_get_column_info( LibmsiView *view, unsigned n, const
return wv->ops->get_column_info( wv, n, name, type, temporary, table_name );
}
-static unsigned update_view_modify( LibmsiView *view, LibmsiModify eModifyMode,
- LibmsiRecord *rec, unsigned row )
-{
- LibmsiUpdateView *uv = (LibmsiUpdateView*)view;
-
- TRACE("%p %d %p\n", uv, eModifyMode, rec );
-
- return LIBMSI_RESULT_FUNCTION_FAILED;
-}
-
static unsigned update_view_delete( LibmsiView *view )
{
LibmsiUpdateView *uv = (LibmsiUpdateView*)view;
@@ -213,7 +203,6 @@ static const LibmsiViewOps update_ops =
update_view_close,
update_view_get_dimensions,
update_view_get_column_info,
- update_view_modify,
update_view_delete,
update_view_find_matching_rows,
NULL,