Home
last modified time | relevance | path

Searched refs:MSIDATABASE (Results 1 – 25 of 26) sorted by relevance

12

/reactos/dll/win32/msi/
H A Dquery.h100 MSIDATABASE *db;
113 UINT TABLE_CreateView( MSIDATABASE *db, LPCWSTR name, MSIVIEW **view );
117 UINT DISTINCT_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table );
123 UINT CREATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR table,
126 UINT INSERT_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR table,
129 UINT UPDATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR table,
132 UINT DELETE_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table );
136 UINT STREAMS_CreateView( MSIDATABASE *db, MSIVIEW **view );
138 UINT STORAGES_CreateView( MSIDATABASE *db, MSIVIEW **view );
140 UINT DROP_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR name );
[all …]
H A Dmsipriv.h123 } MSIDATABASE; typedef
132 MSIDATABASE *db;
394 MSIDATABASE *db;
772 extern void free_cached_tables( MSIDATABASE *db );
773 extern UINT MSI_CommitTables( MSIDATABASE *db );
774 extern UINT msi_commit_streams( MSIDATABASE *db );
885 extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE * );
897 extern UINT msi_clone_properties(MSIDATABASE *);
1043 extern WCHAR *msi_create_temp_file(MSIDATABASE *db);
1066 extern WCHAR *msi_get_error_message(MSIDATABASE *, int);
[all …]
H A Ddatabase.c88 MSIDATABASE *db = (MSIDATABASE *) arg; in MSI_CloseDatabase()
144 MSIDATABASE *db = NULL; in MSI_OpenDatabaseW()
300 MSIDATABASE *db; in MsiOpenDatabaseW()
850 MSIDATABASE *db; in MsiDatabaseImportW()
1171 MSIDATABASE *db; in MsiDatabaseExportW()
1258 MSIDATABASE *db;
1259 MSIDATABASE *merge;
1343 static UINT merge_verify_primary_keys(MSIDATABASE *db, MSIDATABASE *mergedb, in merge_verify_primary_keys()
1780 static UINT gather_merge_data(MSIDATABASE *db, MSIDATABASE *merge, in gather_merge_data()
1861 MSIDATABASE *db, *merge; in MsiDatabaseMergeW()
[all …]
H A Dstreams.c44 MSIDATABASE *db;
48 static BOOL streams_resize_table( MSIDATABASE *db, UINT size ) in streams_resize_table()
221 MSIDATABASE *db = ((struct streams_view *)view)->db; in STREAMS_delete_row()
396 static HRESULT open_stream( MSIDATABASE *db, const WCHAR *name, IStream **stream ) in open_stream()
415 static MSISTREAM *find_stream( MSIDATABASE *db, const WCHAR *name ) in find_stream()
430 static UINT append_stream( MSIDATABASE *db, const WCHAR *name, IStream *stream ) in append_stream()
445 static UINT load_streams( MSIDATABASE *db ) in load_streams()
499 UINT msi_get_stream( MSIDATABASE *db, const WCHAR *name, IStream **ret ) in msi_get_stream()
539 UINT STREAMS_CreateView(MSIDATABASE *db, MSIVIEW **view) in STREAMS_CreateView()
607 UINT msi_commit_streams( MSIDATABASE *db ) in msi_commit_streams()
H A Dmsiquery.c110 UINT MSI_DatabaseOpenViewW( MSIDATABASE *db, const WCHAR *szQuery, MSIQUERY **pView ) in MSI_DatabaseOpenViewW()
138 UINT WINAPIV MSI_OpenQuery( MSIDATABASE *db, MSIQUERY **view, LPCWSTR fmt, ... ) in MSI_OpenQuery()
201 MSIRECORD * WINAPIV MSI_QueryGetRecord( MSIDATABASE *db, LPCWSTR fmt, ... ) in MSI_QueryGetRecord()
239 MSIDATABASE *db; in MsiDatabaseOpenViewW()
287 UINT msi_view_refresh_row(MSIDATABASE *db, MSIVIEW *view, UINT row, MSIRECORD *rec) in msi_view_refresh_row()
353 UINT msi_view_get_row(MSIDATABASE *db, MSIVIEW *view, UINT row, MSIRECORD **rec) in msi_view_get_row()
919 MSIDATABASE *db; in MsiDatabaseApplyTransformW()
964 MSIDATABASE *db; in MsiDatabaseCommit()
1043 UINT MSI_DatabaseGetPrimaryKeys( MSIDATABASE *db, const WCHAR *table, MSIRECORD **prec ) in MSI_DatabaseGetPrimaryKeys()
1081 MSIDATABASE *db; in MsiDatabaseGetPrimaryKeysW()
[all …]
H A Dpatch.c259 static UINT apply_substorage_transform( MSIPACKAGE *package, MSIDATABASE *patch_db, LPCWSTR name ) in apply_substorage_transform()
441 static void patch_offset_get_filepatches( MSIDATABASE *db, UINT last_sequence, struct patch_offset_… in patch_offset_get_filepatches()
475 static void patch_offset_get_files( MSIDATABASE *db, UINT last_sequence, struct patch_offset_list *… in patch_offset_get_files()
512 static UINT patch_update_file_sequence( MSIDATABASE *db, const struct patch_offset_list *pos, in patch_update_file_sequence()
533 static UINT patch_update_filepatch_sequence( MSIDATABASE *db, const struct patch_offset_list *pos, in patch_update_filepatch_sequence()
574 static UINT patch_offset_modify_db( MSIDATABASE *db, struct patch_offset_list *pos ) in patch_offset_modify_db()
751 static UINT patch_set_offsets( MSIDATABASE *db, MSIPATCHINFO *patch ) in patch_set_offsets()
807 static DWORD is_uninstallable( MSIDATABASE *db ) in is_uninstallable()
834 static UINT apply_patch_db( MSIPACKAGE *package, MSIDATABASE *patch_db, MSIPATCHINFO *patch ) in apply_patch_db()
877 MSIDATABASE *patch_db = NULL; in apply_patch_package()
[all …]
H A Ddrop.c40 MSIDATABASE *db;
118 UINT DROP_CreateView(MSIDATABASE *db, MSIVIEW **view, LPCWSTR name) in DROP_CreateView()
H A Dalter.c40 MSIDATABASE *db;
160 UINT ALTER_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR name, column_info *colinfo, int hol… in ALTER_CreateView()
H A Dcreate.c44 MSIDATABASE *db;
160 UINT CREATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR table, in CREATE_CreateView()
H A Ddelete.c54 MSIDATABASE *db;
190 UINT DELETE_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table ) in DELETE_CreateView()
H A Dtable.c472 void free_cached_tables( MSIDATABASE *db ) in free_cached_tables()
483 static MSITABLE *find_cached_table( MSIDATABASE *db, LPCWSTR name ) in find_cached_table()
575 static UINT get_table( MSIDATABASE *db, LPCWSTR name, MSITABLE **table_ret ) in get_table()
707 UINT msi_create_table( MSIDATABASE *db, LPCWSTR name, column_info *col_info, in msi_create_table()
935 static void update_table_columns( MSIDATABASE *db, const WCHAR *name ) in update_table_columns()
962 BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name ) in TABLE_Exists()
999 MSIDATABASE *db;
1290 static UINT add_stream( MSIDATABASE *db, const WCHAR *name, IStream *data ) in add_stream()
2191 UINT TABLE_CreateView( MSIDATABASE *db, LPCWSTR name, MSIVIEW **view ) in TABLE_CreateView()
2886 UINT MSI_CommitTables( MSIDATABASE *db ) in MSI_CommitTables()
[all …]
H A Dupdate.c44 MSIDATABASE *db;
220 UINT UPDATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR table, in UPDATE_CreateView()
H A Ddistinct.c50 MSIDATABASE *db;
273 UINT DISTINCT_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table ) in DISTINCT_CreateView()
H A Dpackage.c381 UINT msi_clone_properties( MSIDATABASE *db ) in msi_clone_properties()
977 MSIPACKAGE *MSI_CreatePackage( MSIDATABASE *db ) in MSI_CreatePackage()
1214 static WCHAR *get_property( MSIDATABASE *db, const WCHAR *prop ) in get_property()
1242 static WCHAR *get_product_code( MSIDATABASE *db ) in get_product_code()
1247 static WCHAR *get_product_version( MSIDATABASE *db ) in get_product_version()
1277 WCHAR *msi_get_package_code( MSIDATABASE *db ) in msi_get_package_code()
1298 static UINT get_local_package( MSIDATABASE *db, WCHAR *localfile ) in get_local_package()
1386 MSIDATABASE *db; in MSI_OpenPackageW()
1818 LPWSTR msi_get_error_message(MSIDATABASE *db, int error) in msi_get_error_message()
2250 UINT msi_get_property( MSIDATABASE *db, LPCWSTR szName, in msi_get_property()
[all …]
H A Dinsert.c45 MSIDATABASE *db;
351 UINT INSERT_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR table, in INSERT_CreateView()
H A Dselect.c46 MSIDATABASE *db;
425 UINT SELECT_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table, in SELECT_CreateView()
H A Dstorages.c52 MSIDATABASE *db;
515 UINT STORAGES_CreateView(MSIDATABASE *db, MSIVIEW **view) in STORAGES_CreateView()
H A Dsuminfo.c492 UINT msi_get_db_suminfo( MSIDATABASE *db, UINT uiUpdateCount, MSISUMMARYINFO **ret ) in msi_get_db_suminfo()
523 MSIDATABASE *db; in MsiGetSummaryInformationW()
1078 UINT msi_add_suminfo( MSIDATABASE *db, LPWSTR **records, int num_records, int num_columns ) in msi_add_suminfo()
1195 UINT msi_export_suminfo( MSIDATABASE *db, HANDLE handle ) in msi_export_suminfo()
H A Dwhere.c66 MSIDATABASE *db;
1226 UINT WHERE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR tables, in WHERE_CreateView()
H A Dassembly.c172 static WCHAR *get_assembly_display_name( MSIDATABASE *db, const WCHAR *comp, MSIASSEMBLY *assembly ) in get_assembly_display_name()
H A Ddialog.c450 static HANDLE load_image( MSIDATABASE *db, const WCHAR *name, UINT type, UINT cx, UINT cy, UINT fla… in load_image()
477 static HICON load_icon( MSIDATABASE *db, const WCHAR *text, UINT attributes ) in load_icon()
946 static HBITMAP load_picture( MSIDATABASE *db, const WCHAR *name, INT cx, INT cy, DWORD flags ) in load_picture()
4125 static MSIPREVIEW *MSI_EnableUIPreview( MSIDATABASE *db ) in MSI_EnableUIPreview()
4146 MSIDATABASE *db; in MsiEnableUIPreview()
H A Dsql.y988 UINT MSI_ParseSQL( MSIDATABASE *db, LPCWSTR command, MSIVIEW **phview, in MSI_ParseSQL()
H A Dmedia.c669 static WCHAR *get_base_url( MSIDATABASE *db ) in get_base_url()
H A Dcustom.c215 WCHAR *msi_create_temp_file( MSIDATABASE *db ) in msi_create_temp_file()
H A Dmsi.c562 MSIDATABASE *patch_db; in MSI_ApplicablePatchW()

12