windowscodecs: Create Image Descriptor metadata block for a GIF frame.
[wine] / dlls / wbemprox / wbemprox_private.h
1 /*
2  * Copyright 2009 Hans Leidekker for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "wine/list.h"
20 #include "wine/unicode.h"
21
22 IClientSecurity client_security;
23 struct list *table_list;
24
25 #define SIZEOF(array) (sizeof(array)/sizeof((array)[0]))
26
27 enum param_direction
28 {
29     PARAM_OUT   = -1,
30     PARAM_INOUT = 0,
31     PARAM_IN    = 1
32 };
33
34 #define COL_TYPE_MASK    0x0000ffff
35 #define COL_FLAG_DYNAMIC 0x00010000
36 #define COL_FLAG_KEY     0x00020000
37 #define COL_FLAG_METHOD  0x00040000
38
39 typedef HRESULT (class_method)(IWbemClassObject *, IWbemClassObject **);
40
41 struct column
42 {
43     const WCHAR *name;
44     UINT type;
45     VARTYPE vartype; /* 0 for default mapping */
46 };
47
48 #define TABLE_FLAG_DYNAMIC 0x00000001
49
50 struct table
51 {
52     const WCHAR *name;
53     UINT num_cols;
54     const struct column *columns;
55     UINT num_rows;
56     BYTE *data;
57     void (*fill)(struct table *);
58     UINT flags;
59     struct list entry;
60 };
61
62 struct property
63 {
64     const WCHAR *name;
65     const WCHAR *class;
66     const struct property *next;
67 };
68
69 struct field
70 {
71     UINT type;
72     union
73     {
74         LONGLONG ival;
75         WCHAR *sval;
76     } u;
77 };
78
79 struct record
80 {
81     UINT count;
82     struct field *fields;
83 };
84
85 enum operator
86 {
87     OP_EQ      = 1,
88     OP_AND     = 2,
89     OP_OR      = 3,
90     OP_GT      = 4,
91     OP_LT      = 5,
92     OP_LE      = 6,
93     OP_GE      = 7,
94     OP_NE      = 8,
95     OP_ISNULL  = 9,
96     OP_NOTNULL = 10,
97     OP_LIKE    = 11
98 };
99
100 struct expr;
101 struct complex_expr
102 {
103     enum operator op;
104     struct expr *left;
105     struct expr *right;
106 };
107
108 enum expr_type
109 {
110     EXPR_COMPLEX = 1,
111     EXPR_UNARY   = 2,
112     EXPR_PROPVAL = 3,
113     EXPR_SVAL    = 4,
114     EXPR_IVAL    = 5,
115     EXPR_BVAL    = 6
116 };
117
118 struct expr
119 {
120     enum expr_type type;
121     union
122     {
123         struct complex_expr expr;
124         const struct property *propval;
125         const WCHAR *sval;
126         int ival;
127     } u;
128 };
129
130 struct view
131 {
132     const struct property *proplist;
133     struct table *table;
134     const struct expr *cond;
135     UINT *result;
136     UINT  count;
137 };
138
139 struct query
140 {
141     LONG refs;
142     struct view *view;
143     struct list mem;
144 };
145
146 void addref_query( struct query * ) DECLSPEC_HIDDEN;
147 void release_query( struct query *query ) DECLSPEC_HIDDEN;
148 HRESULT exec_query( const WCHAR *, IEnumWbemClassObject ** ) DECLSPEC_HIDDEN;
149 HRESULT parse_query( const WCHAR *, struct view **, struct list * ) DECLSPEC_HIDDEN;
150 HRESULT create_view( const struct property *, const WCHAR *, const struct expr *,
151                      struct view ** ) DECLSPEC_HIDDEN;
152 void destroy_view( struct view * ) DECLSPEC_HIDDEN;
153 void init_table_list( void ) DECLSPEC_HIDDEN;
154 struct table *get_table( const WCHAR * ) DECLSPEC_HIDDEN;
155 struct table *create_table( const WCHAR *, UINT, const struct column *, UINT,
156                             BYTE *, void (*)(struct table *)) DECLSPEC_HIDDEN;
157 BOOL add_table( struct table * ) DECLSPEC_HIDDEN;
158 void free_columns( struct column *, UINT ) DECLSPEC_HIDDEN;
159 void free_table( struct table * ) DECLSPEC_HIDDEN;
160 UINT get_type_size( CIMTYPE ) DECLSPEC_HIDDEN;
161 HRESULT get_column_index( const struct table *, const WCHAR *, UINT * ) DECLSPEC_HIDDEN;
162 HRESULT get_value( const struct table *, UINT, UINT, LONGLONG * ) DECLSPEC_HIDDEN;
163 BSTR get_value_bstr( const struct table *, UINT, UINT ) DECLSPEC_HIDDEN;
164 HRESULT set_value( const struct table *, UINT, UINT, LONGLONG, CIMTYPE ) DECLSPEC_HIDDEN;
165 HRESULT get_propval( const struct view *, UINT, const WCHAR *, VARIANT *,
166                      CIMTYPE *, LONG * ) DECLSPEC_HIDDEN;
167 HRESULT put_propval( const struct view *, UINT, const WCHAR *, VARIANT *, CIMTYPE ) DECLSPEC_HIDDEN;
168 HRESULT variant_to_longlong( VARIANT *, LONGLONG *, CIMTYPE * ) DECLSPEC_HIDDEN;
169 HRESULT get_properties( const struct view *, SAFEARRAY ** ) DECLSPEC_HIDDEN;
170 HRESULT get_object( const WCHAR *, IWbemClassObject ** ) DECLSPEC_HIDDEN;
171 const WCHAR *get_method_name( const WCHAR *, UINT ) DECLSPEC_HIDDEN;
172 const WCHAR *get_property_name( const WCHAR *, UINT ) DECLSPEC_HIDDEN;
173
174 HRESULT WbemLocator_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
175 HRESULT WbemServices_create(IUnknown *, const WCHAR *, LPVOID *) DECLSPEC_HIDDEN;
176 HRESULT create_class_object(const WCHAR *, IEnumWbemClassObject *, UINT,
177                             struct record *, IWbemClassObject **) DECLSPEC_HIDDEN;
178 HRESULT EnumWbemClassObject_create(IUnknown *, struct query *, LPVOID *) DECLSPEC_HIDDEN;
179
180 static void *heap_alloc( size_t len ) __WINE_ALLOC_SIZE(1);
181 static inline void *heap_alloc( size_t len )
182 {
183     return HeapAlloc( GetProcessHeap(), 0, len );
184 }
185
186 static void *heap_realloc( void *mem, size_t len ) __WINE_ALLOC_SIZE(2);
187 static inline void *heap_realloc( void *mem, size_t len )
188 {
189     return HeapReAlloc( GetProcessHeap(), 0, mem, len );
190 }
191
192 static void *heap_alloc_zero( size_t len ) __WINE_ALLOC_SIZE(1);
193 static inline void *heap_alloc_zero( size_t len )
194 {
195     return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, len );
196 }
197
198 static inline BOOL heap_free( void *mem )
199 {
200     return HeapFree( GetProcessHeap(), 0, mem );
201 }
202
203 static inline WCHAR *heap_strdupW( const WCHAR *src )
204 {
205     WCHAR *dst;
206     if (!src) return NULL;
207     if ((dst = heap_alloc( (strlenW( src ) + 1) * sizeof(WCHAR) ))) strcpyW( dst, src );
208     return dst;
209 }