/reactos/dll/win32/msi/ |
H A D | query.h | 100 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 D | msipriv.h | 123 } 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 D | database.c | 88 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 D | streams.c | 44 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 D | msiquery.c | 110 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 D | patch.c | 259 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 D | drop.c | 40 MSIDATABASE *db; 118 UINT DROP_CreateView(MSIDATABASE *db, MSIVIEW **view, LPCWSTR name) in DROP_CreateView()
|
H A D | alter.c | 40 MSIDATABASE *db; 160 UINT ALTER_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR name, column_info *colinfo, int hol… in ALTER_CreateView()
|
H A D | create.c | 44 MSIDATABASE *db; 160 UINT CREATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR table, in CREATE_CreateView()
|
H A D | delete.c | 54 MSIDATABASE *db; 190 UINT DELETE_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table ) in DELETE_CreateView()
|
H A D | table.c | 472 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 D | update.c | 44 MSIDATABASE *db; 220 UINT UPDATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR table, in UPDATE_CreateView()
|
H A D | distinct.c | 50 MSIDATABASE *db; 273 UINT DISTINCT_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table ) in DISTINCT_CreateView()
|
H A D | package.c | 381 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 D | insert.c | 45 MSIDATABASE *db; 351 UINT INSERT_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR table, in INSERT_CreateView()
|
H A D | select.c | 46 MSIDATABASE *db; 425 UINT SELECT_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table, in SELECT_CreateView()
|
H A D | storages.c | 52 MSIDATABASE *db; 515 UINT STORAGES_CreateView(MSIDATABASE *db, MSIVIEW **view) in STORAGES_CreateView()
|
H A D | suminfo.c | 492 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 D | where.c | 66 MSIDATABASE *db; 1226 UINT WHERE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR tables, in WHERE_CreateView()
|
H A D | assembly.c | 172 static WCHAR *get_assembly_display_name( MSIDATABASE *db, const WCHAR *comp, MSIASSEMBLY *assembly ) in get_assembly_display_name()
|
H A D | dialog.c | 450 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 D | sql.y | 988 UINT MSI_ParseSQL( MSIDATABASE *db, LPCWSTR command, MSIVIEW **phview, in MSI_ParseSQL()
|
H A D | media.c | 669 static WCHAR *get_base_url( MSIDATABASE *db ) in get_base_url()
|
H A D | custom.c | 215 WCHAR *msi_create_temp_file( MSIDATABASE *db ) in msi_create_temp_file()
|
H A D | msi.c | 562 MSIDATABASE *patch_db; in MSI_ApplicablePatchW()
|