#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.
|
| WINE_DEFAULT_DEBUG_CHANNEL (msidb) |
|
static UINT | ALTER_fetch_int (struct tagMSIVIEW *view, UINT row, UINT col, UINT *val) |
|
static UINT | ALTER_fetch_stream (struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm) |
|
static UINT | ALTER_execute (struct tagMSIVIEW *view, MSIRECORD *record) |
|
static UINT | ALTER_close (struct tagMSIVIEW *view) |
|
static UINT | ALTER_get_dimensions (struct tagMSIVIEW *view, UINT *rows, UINT *cols) |
|
static UINT | ALTER_get_column_info (struct tagMSIVIEW *view, UINT n, LPCWSTR *name, UINT *type, BOOL *temporary, LPCWSTR *table_name) |
|
static UINT | ALTER_modify (struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *rec, UINT row) |
|
static UINT | ALTER_delete (struct tagMSIVIEW *view) |
|
UINT | ALTER_CreateView (MSIDATABASE *db, MSIVIEW **view, LPCWSTR name, column_info *colinfo, int hold) |
|
◆ ALTER_close()
◆ ALTER_CreateView()
Definition at line 160 of file alter.c.
161{
164
166
167 av =
calloc( 1,
sizeof *av );
168 if( !av )
170
173 {
176 }
177
180
181
186
188
190}
static const MSIVIEWOPS alter_ops
GLdouble GLdouble GLdouble r
UINT TABLE_CreateView(MSIDATABASE *db, LPCWSTR name, MSIVIEW **view)
#define ERROR_FUNCTION_FAILED
◆ ALTER_delete()
Definition at line 125 of file alter.c.
126{
128
133
135}
UINT(* delete)(struct tagMSIVIEW *)
◆ ALTER_execute()
Definition at line 64 of file alter.c.
65{
68
70
74
77 else if (av->
hold == -1)
78 {
82 }
83
85}
UINT(* add_column)(struct tagMSIVIEW *view, LPCWSTR column, INT type, BOOL hold)
UINT(* add_ref)(struct tagMSIVIEW *view)
UINT(* release)(struct tagMSIVIEW *view)
◆ ALTER_fetch_int()
Definition at line 46 of file alter.c.
47{
49
51
53}
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
◆ ALTER_fetch_stream()
Definition at line 55 of file alter.c.
56{
58
59 TRACE(
"%p %d %d %p\n", av,
row, col, stm );
60
62}
◆ ALTER_get_column_info()
Definition at line 105 of file alter.c.
107{
109
110 TRACE(
"%p %d %p %p %p %p\n", av,
n,
name,
type, temporary, table_name );
111
113}
GLuint GLuint GLsizei GLenum type
◆ ALTER_get_dimensions()
Definition at line 96 of file alter.c.
97{
99
100 TRACE(
"%p %p %p\n", av, rows, cols );
101
103}
◆ ALTER_modify()
Definition at line 115 of file alter.c.
117{
119
120 TRACE(
"%p %d %p\n", av, eModifyMode, rec );
121
123}
◆ WINE_DEFAULT_DEBUG_CHANNEL()
WINE_DEFAULT_DEBUG_CHANNEL |
( |
msidb |
| ) |
|
◆ alter_ops
Initial value:=
{
}
static UINT ALTER_fetch_int(struct tagMSIVIEW *view, UINT row, UINT col, UINT *val)
static UINT ALTER_get_column_info(struct tagMSIVIEW *view, UINT n, LPCWSTR *name, UINT *type, BOOL *temporary, LPCWSTR *table_name)
static UINT ALTER_fetch_stream(struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm)
static UINT ALTER_close(struct tagMSIVIEW *view)
static UINT ALTER_delete(struct tagMSIVIEW *view)
static UINT ALTER_modify(struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *rec, UINT row)
static UINT ALTER_get_dimensions(struct tagMSIVIEW *view, UINT *rows, UINT *cols)
static UINT ALTER_execute(struct tagMSIVIEW *view, MSIRECORD *record)
Definition at line 137 of file alter.c.
Referenced by ALTER_CreateView().