summaryrefslogtreecommitdiffstats
path: root/libmsi/alter.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/alter.c
parenta1b24a6892f5d776a74d2dd474c6e5c89111ba02 (diff)
downloadmsitools-0c8177bd03da8f9dca719ffde8557968c932072f.tar.gz
msitools-0c8177bd03da8f9dca719ffde8557968c932072f.tar.xz
msitools-0c8177bd03da8f9dca719ffde8557968c932072f.zip
remove superfluous "struct tagMSIVIEW"
Diffstat (limited to 'libmsi/alter.c')
-rw-r--r--libmsi/alter.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/libmsi/alter.c b/libmsi/alter.c
index c7ce1e3..daba950 100644
--- a/libmsi/alter.c
+++ b/libmsi/alter.c
@@ -41,7 +41,7 @@ typedef struct tagMSIALTERVIEW
INT hold;
} MSIALTERVIEW;
-static UINT ALTER_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
+static UINT ALTER_fetch_int( MSIVIEW *view, UINT row, UINT col, UINT *val )
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
@@ -50,7 +50,7 @@ static UINT ALTER_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *
return ERROR_FUNCTION_FAILED;
}
-static UINT ALTER_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm)
+static UINT ALTER_fetch_stream( MSIVIEW *view, UINT row, UINT col, IStream **stm)
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
@@ -59,7 +59,7 @@ static UINT ALTER_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, ISt
return ERROR_FUNCTION_FAILED;
}
-static UINT ALTER_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
+static UINT ALTER_get_row( MSIVIEW *view, UINT row, MSIRECORD **rec )
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
@@ -147,7 +147,7 @@ static UINT alter_add_column(MSIALTERVIEW *av)
return r;
}
-static UINT ALTER_execute( struct tagMSIVIEW *view, MSIRECORD *record )
+static UINT ALTER_execute( MSIVIEW *view, MSIRECORD *record )
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
UINT ref;
@@ -169,7 +169,7 @@ static UINT ALTER_execute( struct tagMSIVIEW *view, MSIRECORD *record )
return ERROR_SUCCESS;
}
-static UINT ALTER_close( struct tagMSIVIEW *view )
+static UINT ALTER_close( MSIVIEW *view )
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
@@ -178,7 +178,7 @@ static UINT ALTER_close( struct tagMSIVIEW *view )
return ERROR_SUCCESS;
}
-static UINT ALTER_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols )
+static UINT ALTER_get_dimensions( MSIVIEW *view, UINT *rows, UINT *cols )
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
@@ -187,7 +187,7 @@ static UINT ALTER_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *col
return ERROR_FUNCTION_FAILED;
}
-static UINT ALTER_get_column_info( struct tagMSIVIEW *view, UINT n, const WCHAR **name,
+static UINT ALTER_get_column_info( MSIVIEW *view, UINT n, const WCHAR **name,
UINT *type, BOOL *temporary, const WCHAR **table_name )
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
@@ -197,7 +197,7 @@ static UINT ALTER_get_column_info( struct tagMSIVIEW *view, UINT n, const WCHAR
return ERROR_FUNCTION_FAILED;
}
-static UINT ALTER_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
+static UINT ALTER_modify( MSIVIEW *view, MSIMODIFY eModifyMode,
MSIRECORD *rec, UINT row )
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
@@ -207,7 +207,7 @@ static UINT ALTER_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
return ERROR_FUNCTION_FAILED;
}
-static UINT ALTER_delete( struct tagMSIVIEW *view )
+static UINT ALTER_delete( MSIVIEW *view )
{
MSIALTERVIEW *av = (MSIALTERVIEW*)view;
@@ -219,7 +219,7 @@ static UINT ALTER_delete( struct tagMSIVIEW *view )
return ERROR_SUCCESS;
}
-static UINT ALTER_find_matching_rows( struct tagMSIVIEW *view, UINT col,
+static UINT ALTER_find_matching_rows( MSIVIEW *view, UINT col,
UINT val, UINT *row, MSIITERHANDLE *handle )
{
TRACE("%p, %d, %u, %p\n", view, col, val, *handle);