2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2008 James Hawkins
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(msidb);
37 typedef struct tagMSIDROPVIEW
46 static UINT DROP_execute(struct tagMSIVIEW *view, MSIRECORD *record)
48 MSIDROPVIEW *dv = (MSIDROPVIEW*)view;
51 TRACE("%p %p\n", dv, record);
54 return ERROR_FUNCTION_FAILED;
56 r = dv->table->ops->execute(dv->table, record);
57 if (r != ERROR_SUCCESS)
60 return dv->table->ops->drop(dv->table);
63 static UINT DROP_close(struct tagMSIVIEW *view)
65 MSIDROPVIEW *dv = (MSIDROPVIEW*)view;
72 static UINT DROP_get_dimensions(struct tagMSIVIEW *view, UINT *rows, UINT *cols)
74 MSIDROPVIEW *dv = (MSIDROPVIEW*)view;
76 TRACE("%p %p %p\n", dv, rows, cols);
78 return ERROR_FUNCTION_FAILED;
81 static UINT DROP_delete( struct tagMSIVIEW *view )
83 MSIDROPVIEW *dv = (MSIDROPVIEW*)view;
88 dv->table->ops->delete( dv->table );
95 static const MSIVIEWOPS drop_ops =
118 UINT DROP_CreateView(MSIDATABASE *db, MSIVIEW **view, LPCWSTR name)
123 TRACE("%p %s\n", view, debugstr_w(name));
125 dv = msi_alloc_zero(sizeof *dv);
127 return ERROR_FUNCTION_FAILED;
129 r = TABLE_CreateView(db, name, &dv->table);
130 if (r != ERROR_SUCCESS)
136 dv->view.ops = &drop_ops;
139 *view = (MSIVIEW *)dv;
141 return ERROR_SUCCESS;