#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 "winnls.h"
#include "query.h"
Go to the source code of this file.
|
| WINE_DEFAULT_DEBUG_CHANNEL (msidb) |
|
static UINT | DELETE_fetch_int (struct tagMSIVIEW *view, UINT row, UINT col, UINT *val) |
|
static UINT | DELETE_fetch_stream (struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm) |
|
static UINT | DELETE_execute (struct tagMSIVIEW *view, MSIRECORD *record) |
|
static UINT | DELETE_close (struct tagMSIVIEW *view) |
|
static UINT | DELETE_get_dimensions (struct tagMSIVIEW *view, UINT *rows, UINT *cols) |
|
static UINT | DELETE_get_column_info (struct tagMSIVIEW *view, UINT n, LPCWSTR *name, UINT *type, BOOL *temporary, LPCWSTR *table_name) |
|
static UINT | DELETE_modify (struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *rec, UINT row) |
|
static UINT | DELETE_delete (struct tagMSIVIEW *view) |
|
UINT | DELETE_CreateView (MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table) |
|
◆ DELETE_close()
Definition at line 103 of file delete.c.
104{
106
108
111
113}
UINT(* close)(struct tagMSIVIEW *view)
#define ERROR_FUNCTION_FAILED
◆ DELETE_CreateView()
Definition at line 190 of file delete.c.
191{
193
195
196 dv =
calloc( 1,
sizeof *dv );
197 if( !dv )
199
200
204
206
208}
static const MSIVIEWOPS delete_ops
◆ DELETE_delete()
Definition at line 153 of file delete.c.
154{
156
158
161
163
165}
UINT(* delete)(struct tagMSIVIEW *)
◆ DELETE_execute()
Definition at line 76 of file delete.c.
77{
79 UINT r,
i, rows = 0, cols = 0;
80
82
85
89
93
94 TRACE(
"deleting %d rows\n", rows);
95
96
97 for (
i=0;
i<rows;
i++ )
99
101}
GLdouble GLdouble GLdouble r
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
UINT(* get_dimensions)(struct tagMSIVIEW *view, UINT *rows, UINT *cols)
UINT(* execute)(struct tagMSIVIEW *view, MSIRECORD *record)
UINT(* delete_row)(struct tagMSIVIEW *view, UINT row)
◆ DELETE_fetch_int()
Definition at line 58 of file delete.c.
59{
61
63
65}
struct png_info_def *typedef unsigned char **typedef struct png_info_def *typedef struct png_info_def *typedef struct png_info_def *typedef unsigned char ** row
◆ DELETE_fetch_stream()
Definition at line 67 of file delete.c.
68{
70
71 TRACE(
"%p %d %d %p\n", dv,
row, col, stm );
72
74}
◆ DELETE_get_column_info()
Definition at line 129 of file delete.c.
131{
133
134 TRACE(
"%p %d %p %p %p %p\n", dv,
n,
name,
type, temporary, table_name );
135
138
140 type, temporary, table_name);
141}
GLuint GLuint GLsizei GLenum type
UINT(* get_column_info)(struct tagMSIVIEW *view, UINT n, LPCWSTR *name, UINT *type, BOOL *temporary, LPCWSTR *table_name)
◆ DELETE_get_dimensions()
Definition at line 115 of file delete.c.
116{
118
119 TRACE(
"%p %p %p\n", dv, rows, cols );
120
123
124 *rows = 0;
125
127}
◆ DELETE_modify()
Definition at line 143 of file delete.c.
145{
147
148 TRACE(
"%p %d %p\n", dv, eModifyMode, rec );
149
151}
◆ WINE_DEFAULT_DEBUG_CHANNEL()
WINE_DEFAULT_DEBUG_CHANNEL |
( |
msidb |
| ) |
|
◆ delete_ops
Initial value:=
{
}
static UINT DELETE_execute(struct tagMSIVIEW *view, MSIRECORD *record)
static UINT DELETE_fetch_stream(struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm)
static UINT DELETE_close(struct tagMSIVIEW *view)
static UINT DELETE_modify(struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *rec, UINT row)
static UINT DELETE_fetch_int(struct tagMSIVIEW *view, UINT row, UINT col, UINT *val)
static UINT DELETE_delete(struct tagMSIVIEW *view)
static UINT DELETE_get_dimensions(struct tagMSIVIEW *view, UINT *rows, UINT *cols)
static UINT DELETE_get_column_info(struct tagMSIVIEW *view, UINT n, LPCWSTR *name, UINT *type, BOOL *temporary, LPCWSTR *table_name)
Definition at line 167 of file delete.c.
Referenced by DELETE_CreateView().