#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "wine/debug.h"
#include "msi.h"
#include "msiquery.h"
#include "objbase.h"
#include "objidl.h"
#include "msipriv.h"
#include "query.h"
Go to the source code of this file.
◆ DROP_close()
◆ DROP_CreateView()
Definition at line 118 of file drop.c.
119{
122
124
125 dv =
calloc(1,
sizeof *dv);
126 if(!dv)
128
131 {
134 }
135
138
140
142}
static const MSIVIEWOPS drop_ops
GLdouble GLdouble GLdouble r
UINT TABLE_CreateView(MSIDATABASE *db, LPCWSTR name, MSIVIEW **view)
#define ERROR_FUNCTION_FAILED
◆ DROP_delete()
Definition at line 81 of file drop.c.
82{
84
86
89
91
93}
UINT(* delete)(struct tagMSIVIEW *)
◆ DROP_execute()
Definition at line 46 of file drop.c.
47{
50
52
55
59
61}
UINT(* execute)(struct tagMSIVIEW *view, MSIRECORD *record)
UINT(* drop)(struct tagMSIVIEW *view)
◆ DROP_get_dimensions()
Definition at line 72 of file drop.c.
73{
75
76 TRACE(
"%p %p %p\n", dv, rows, cols);
77
79}
◆ WINE_DEFAULT_DEBUG_CHANNEL()
WINE_DEFAULT_DEBUG_CHANNEL |
( |
msidb |
| ) |
|
◆ drop_ops
Initial value:=
{
}
static UINT DROP_close(struct tagMSIVIEW *view)
static UINT DROP_delete(struct tagMSIVIEW *view)
static UINT DROP_get_dimensions(struct tagMSIVIEW *view, UINT *rows, UINT *cols)
static UINT DROP_execute(struct tagMSIVIEW *view, MSIRECORD *record)
Definition at line 95 of file drop.c.
Referenced by DROP_CreateView().