summaryrefslogtreecommitdiffstats
path: root/libmsi/drop.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-10-23 11:07:21 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:26:29 +0100
commit0c8177bd03da8f9dca719ffde8557968c932072f (patch)
treef514672adeb802073a3ddde78e9b89a77efba81d /libmsi/drop.c
parenta1b24a6892f5d776a74d2dd474c6e5c89111ba02 (diff)
downloadmsitools-0c8177bd03da8f9dca719ffde8557968c932072f.tar.gz
msitools-0c8177bd03da8f9dca719ffde8557968c932072f.tar.xz
msitools-0c8177bd03da8f9dca719ffde8557968c932072f.zip
remove superfluous "struct tagMSIVIEW"
Diffstat (limited to 'libmsi/drop.c')
-rw-r--r--libmsi/drop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmsi/drop.c b/libmsi/drop.c
index db5a7af..0be6435 100644
--- a/libmsi/drop.c
+++ b/libmsi/drop.c
@@ -41,7 +41,7 @@ typedef struct tagMSIDROPVIEW
INT hold;
} MSIDROPVIEW;
-static UINT DROP_execute(struct tagMSIVIEW *view, MSIRECORD *record)
+static UINT DROP_execute(MSIVIEW *view, MSIRECORD *record)
{
MSIDROPVIEW *dv = (MSIDROPVIEW*)view;
UINT r;
@@ -58,7 +58,7 @@ static UINT DROP_execute(struct tagMSIVIEW *view, MSIRECORD *record)
return dv->table->ops->drop(dv->table);
}
-static UINT DROP_close(struct tagMSIVIEW *view)
+static UINT DROP_close(MSIVIEW *view)
{
MSIDROPVIEW *dv = (MSIDROPVIEW*)view;
@@ -67,7 +67,7 @@ static UINT DROP_close(struct tagMSIVIEW *view)
return ERROR_SUCCESS;
}
-static UINT DROP_get_dimensions(struct tagMSIVIEW *view, UINT *rows, UINT *cols)
+static UINT DROP_get_dimensions(MSIVIEW *view, UINT *rows, UINT *cols)
{
MSIDROPVIEW *dv = (MSIDROPVIEW*)view;
@@ -76,7 +76,7 @@ static UINT DROP_get_dimensions(struct tagMSIVIEW *view, UINT *rows, UINT *cols)
return ERROR_FUNCTION_FAILED;
}
-static UINT DROP_delete( struct tagMSIVIEW *view )
+static UINT DROP_delete( MSIVIEW *view )
{
MSIDROPVIEW *dv = (MSIDROPVIEW*)view;