2003-08-13 03:27:48 +02:00
|
|
|
/*
|
|
|
|
* Implementation of the Microsoft Installer (msi.dll)
|
|
|
|
*
|
2005-01-28 13:39:57 +01:00
|
|
|
* Copyright 2002-2005 Mike McCormack for CodeWeavers
|
2003-08-13 03:27:48 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_MSI_PRIVATE__
|
|
|
|
#define __WINE_MSI_PRIVATE__
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2003-08-13 03:27:48 +02:00
|
|
|
#include "msi.h"
|
|
|
|
#include "msiquery.h"
|
2004-08-22 23:38:46 +02:00
|
|
|
#include "objbase.h"
|
2003-08-13 03:27:48 +02:00
|
|
|
#include "objidl.h"
|
2005-06-01 13:02:19 +02:00
|
|
|
#include "winnls.h"
|
2005-05-23 14:08:17 +02:00
|
|
|
#include "wine/list.h"
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
#define MSI_DATASIZEMASK 0x00ff
|
|
|
|
#define MSITYPE_VALID 0x0100
|
2005-09-28 13:59:40 +02:00
|
|
|
#define MSITYPE_LOCALIZABLE 0x200
|
2003-08-13 03:27:48 +02:00
|
|
|
#define MSITYPE_STRING 0x0800
|
|
|
|
#define MSITYPE_NULLABLE 0x1000
|
|
|
|
#define MSITYPE_KEY 0x2000
|
|
|
|
|
2005-09-28 13:59:40 +02:00
|
|
|
#define MSITYPE_IS_BINARY(type) (((type) & ~MSITYPE_NULLABLE) == (MSITYPE_STRING|MSITYPE_VALID))
|
2004-06-29 05:44:01 +02:00
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
struct tagMSITABLE;
|
|
|
|
typedef struct tagMSITABLE MSITABLE;
|
|
|
|
|
2004-03-17 21:49:59 +01:00
|
|
|
struct string_table;
|
|
|
|
typedef struct string_table string_table;
|
2003-08-13 03:27:48 +02:00
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
struct tagMSIOBJECTHDR;
|
|
|
|
typedef struct tagMSIOBJECTHDR MSIOBJECTHDR;
|
|
|
|
|
|
|
|
typedef VOID (*msihandledestructor)( MSIOBJECTHDR * );
|
|
|
|
|
|
|
|
struct tagMSIOBJECTHDR
|
|
|
|
{
|
|
|
|
UINT magic;
|
|
|
|
UINT type;
|
2005-07-06 12:33:30 +02:00
|
|
|
LONG refcount;
|
2004-07-10 00:25:34 +02:00
|
|
|
msihandledestructor destructor;
|
|
|
|
};
|
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
typedef struct tagMSIDATABASE
|
|
|
|
{
|
2004-07-10 00:25:34 +02:00
|
|
|
MSIOBJECTHDR hdr;
|
2003-08-13 03:27:48 +02:00
|
|
|
IStorage *storage;
|
2004-03-17 21:49:59 +01:00
|
|
|
string_table *strings;
|
2005-05-31 11:30:28 +02:00
|
|
|
LPCWSTR mode;
|
2005-09-14 12:07:26 +02:00
|
|
|
struct list tables;
|
2005-10-27 14:25:04 +02:00
|
|
|
struct list transforms;
|
2003-08-13 03:27:48 +02:00
|
|
|
} MSIDATABASE;
|
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
typedef struct tagMSIVIEW MSIVIEW;
|
|
|
|
|
|
|
|
typedef struct tagMSIQUERY
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
MSIVIEW *view;
|
|
|
|
UINT row;
|
|
|
|
MSIDATABASE *db;
|
2005-05-23 14:08:17 +02:00
|
|
|
struct list mem;
|
2004-07-10 00:25:34 +02:00
|
|
|
} MSIQUERY;
|
|
|
|
|
|
|
|
/* maybe we can use a Variant instead of doing it ourselves? */
|
|
|
|
typedef struct tagMSIFIELD
|
|
|
|
{
|
|
|
|
UINT type;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
INT iVal;
|
|
|
|
LPWSTR szwVal;
|
|
|
|
IStream *stream;
|
|
|
|
} u;
|
|
|
|
} MSIFIELD;
|
|
|
|
|
|
|
|
typedef struct tagMSIRECORD
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
UINT count; /* as passed to MsiCreateRecord */
|
|
|
|
MSIFIELD fields[1]; /* nb. array size is count+1 */
|
|
|
|
} MSIRECORD;
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
typedef struct tagMSIVIEWOPS
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* fetch_int - reads one integer from {row,col} in the table
|
|
|
|
*
|
|
|
|
* This function should be called after the execute method.
|
|
|
|
* Data returned by the function should not change until
|
|
|
|
* close or delete is called.
|
|
|
|
* To get a string value, query the database's string table with
|
|
|
|
* the integer value returned from this function.
|
|
|
|
*/
|
|
|
|
UINT (*fetch_int)( struct tagMSIVIEW *, UINT row, UINT col, UINT *val );
|
|
|
|
|
2004-07-06 20:56:12 +02:00
|
|
|
/*
|
|
|
|
* fetch_int - reads one integer from {row,col} in the table
|
|
|
|
*
|
|
|
|
* This function is similar to fetch_int, except fetches a
|
|
|
|
* stream instead of an integer.
|
|
|
|
*/
|
|
|
|
UINT (*fetch_stream)( struct tagMSIVIEW *, UINT row, UINT col, IStream **stm );
|
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
/*
|
|
|
|
* get_int - sets one integer at {row,col} in the table
|
|
|
|
*
|
|
|
|
* Similar semantics to fetch_int
|
|
|
|
*/
|
|
|
|
UINT (*set_int)( struct tagMSIVIEW *, UINT row, UINT col, UINT val );
|
|
|
|
|
|
|
|
/*
|
2005-08-24 13:10:23 +02:00
|
|
|
* Inserts a new row into the database from the records contents
|
2004-03-19 02:16:36 +01:00
|
|
|
*/
|
2005-08-24 13:10:23 +02:00
|
|
|
UINT (*insert_row)( struct tagMSIVIEW *, MSIRECORD * );
|
2004-03-19 02:16:36 +01:00
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
/*
|
|
|
|
* execute - loads the underlying data into memory so it can be read
|
|
|
|
*/
|
2004-07-10 00:25:34 +02:00
|
|
|
UINT (*execute)( struct tagMSIVIEW *, MSIRECORD * );
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* close - clears the data read by execute from memory
|
|
|
|
*/
|
|
|
|
UINT (*close)( struct tagMSIVIEW * );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_dimensions - returns the number of rows or columns in a table.
|
|
|
|
*
|
|
|
|
* The number of rows can only be queried after the execute method
|
|
|
|
* is called. The number of columns can be queried at any time.
|
|
|
|
*/
|
|
|
|
UINT (*get_dimensions)( struct tagMSIVIEW *, UINT *rows, UINT *cols );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* get_column_info - returns the name and type of a specific column
|
|
|
|
*
|
|
|
|
* The name is HeapAlloc'ed by this function and should be freed by
|
|
|
|
* the caller.
|
|
|
|
* The column information can be queried at any time.
|
|
|
|
*/
|
|
|
|
UINT (*get_column_info)( struct tagMSIVIEW *, UINT n, LPWSTR *name, UINT *type );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* modify - not yet implemented properly
|
|
|
|
*/
|
2005-02-08 14:44:25 +01:00
|
|
|
UINT (*modify)( struct tagMSIVIEW *, MSIMODIFY, MSIRECORD * );
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* delete - destroys the structure completely
|
|
|
|
*/
|
|
|
|
UINT (*delete)( struct tagMSIVIEW * );
|
|
|
|
|
|
|
|
} MSIVIEWOPS;
|
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
struct tagMSIVIEW
|
2003-08-13 03:27:48 +02:00
|
|
|
{
|
2004-07-10 00:25:34 +02:00
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
MSIVIEWOPS *ops;
|
|
|
|
};
|
2003-08-13 03:27:48 +02:00
|
|
|
|
2005-02-02 10:55:51 +01:00
|
|
|
struct msi_dialog_tag;
|
|
|
|
typedef struct msi_dialog_tag msi_dialog;
|
|
|
|
|
2004-07-04 02:32:48 +02:00
|
|
|
typedef struct tagMSIPACKAGE
|
|
|
|
{
|
2004-07-10 00:25:34 +02:00
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
MSIDATABASE *db;
|
2005-08-22 11:15:23 +02:00
|
|
|
struct list components;
|
2005-08-22 16:09:17 +02:00
|
|
|
struct list features;
|
2005-08-23 12:03:17 +02:00
|
|
|
struct list files;
|
2005-09-07 13:25:18 +02:00
|
|
|
struct list tempfiles;
|
2005-08-23 20:15:44 +02:00
|
|
|
struct list folders;
|
2004-12-22 16:05:07 +01:00
|
|
|
LPWSTR ActionFormat;
|
|
|
|
LPWSTR LastAction;
|
2005-01-19 20:07:40 +01:00
|
|
|
|
2005-08-25 12:22:32 +02:00
|
|
|
struct list classes;
|
2005-08-29 11:38:39 +02:00
|
|
|
struct list extensions;
|
2005-09-06 11:26:18 +02:00
|
|
|
struct list progids;
|
2005-08-26 10:47:31 +02:00
|
|
|
struct list mimes;
|
2005-08-24 11:45:18 +02:00
|
|
|
struct list appids;
|
2005-05-26 14:24:28 +02:00
|
|
|
|
2005-05-27 21:24:22 +02:00
|
|
|
struct tagMSISCRIPT *script;
|
2005-01-19 20:07:40 +01:00
|
|
|
|
2005-09-08 14:42:07 +02:00
|
|
|
struct list RunningActions;
|
2005-01-25 21:17:09 +01:00
|
|
|
|
2005-01-19 20:07:40 +01:00
|
|
|
LPWSTR PackagePath;
|
2005-07-05 23:00:06 +02:00
|
|
|
LPWSTR ProductCode;
|
2005-01-27 12:12:56 +01:00
|
|
|
|
|
|
|
UINT CurrentInstallState;
|
2005-02-02 10:55:51 +01:00
|
|
|
msi_dialog *dialog;
|
|
|
|
LPWSTR next_dialog;
|
2005-05-27 21:24:22 +02:00
|
|
|
|
2005-06-06 17:40:15 +02:00
|
|
|
struct list subscriptions;
|
2004-07-04 02:32:48 +02:00
|
|
|
} MSIPACKAGE;
|
|
|
|
|
2005-01-21 11:17:01 +01:00
|
|
|
typedef struct tagMSIPREVIEW
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
2005-01-28 13:39:57 +01:00
|
|
|
MSIPACKAGE *package;
|
2005-02-02 10:55:51 +01:00
|
|
|
msi_dialog *dialog;
|
2005-01-21 11:17:01 +01:00
|
|
|
} MSIPREVIEW;
|
|
|
|
|
2005-10-26 12:10:50 +02:00
|
|
|
#define MSI_MAX_PROPS 20
|
|
|
|
|
|
|
|
typedef struct tagMSISUMMARYINFO
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
MSIDATABASE *db;
|
|
|
|
DWORD update_count;
|
|
|
|
PROPVARIANT property[MSI_MAX_PROPS];
|
|
|
|
} MSISUMMARYINFO;
|
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
#define MSIHANDLETYPE_ANY 0
|
|
|
|
#define MSIHANDLETYPE_DATABASE 1
|
|
|
|
#define MSIHANDLETYPE_SUMMARYINFO 2
|
|
|
|
#define MSIHANDLETYPE_VIEW 3
|
|
|
|
#define MSIHANDLETYPE_RECORD 4
|
2004-06-30 21:38:36 +02:00
|
|
|
#define MSIHANDLETYPE_PACKAGE 5
|
2005-01-21 11:17:01 +01:00
|
|
|
#define MSIHANDLETYPE_PREVIEW 6
|
2003-08-13 03:27:48 +02:00
|
|
|
|
2004-07-19 23:49:15 +02:00
|
|
|
#define MSI_MAJORVERSION 2
|
|
|
|
#define MSI_MINORVERSION 0
|
|
|
|
#define MSI_BUILDNUMBER 2600
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
#define GUID_SIZE 39
|
|
|
|
|
|
|
|
#define MSIHANDLE_MAGIC 0x4d434923
|
2005-01-28 13:39:57 +01:00
|
|
|
#define MSIMAXHANDLES 0xf0
|
2003-08-13 03:27:48 +02:00
|
|
|
|
2004-03-30 22:42:06 +02:00
|
|
|
DEFINE_GUID(CLSID_IMsiServer, 0x000C101C,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
|
|
|
DEFINE_GUID(CLSID_IMsiServerX1, 0x000C103E,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
|
|
|
DEFINE_GUID(CLSID_IMsiServerX2, 0x000C1090,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
|
|
|
DEFINE_GUID(CLSID_IMsiServerX3, 0x000C1094,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
|
|
|
|
|
|
|
DEFINE_GUID(CLSID_IMsiServerMessage, 0x000C101D,0x0000,0x0000,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
|
|
|
|
|
2005-10-31 15:07:37 +01:00
|
|
|
/* handle unicode/ascii output in the Msi* API functions */
|
2005-09-06 13:05:35 +02:00
|
|
|
typedef struct {
|
|
|
|
BOOL unicode;
|
|
|
|
union {
|
|
|
|
LPSTR a;
|
|
|
|
LPWSTR w;
|
|
|
|
} str;
|
|
|
|
} awstring;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
BOOL unicode;
|
|
|
|
union {
|
|
|
|
LPCSTR a;
|
|
|
|
LPCWSTR w;
|
|
|
|
} str;
|
|
|
|
} awcstring;
|
2003-08-13 03:27:48 +02:00
|
|
|
|
2005-10-31 15:07:37 +01:00
|
|
|
UINT msi_strcpy_to_awstring( LPCWSTR str, awstring *awbuf, DWORD *sz );
|
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
/* handle functions */
|
|
|
|
extern void *msihandle2msiinfo(MSIHANDLE handle, UINT type);
|
|
|
|
extern MSIHANDLE alloc_msihandle( MSIOBJECTHDR * );
|
|
|
|
extern void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy );
|
|
|
|
extern void msiobj_addref(MSIOBJECTHDR *);
|
|
|
|
extern int msiobj_release(MSIOBJECTHDR *);
|
2004-12-27 20:29:33 +01:00
|
|
|
extern void msiobj_lock(MSIOBJECTHDR *);
|
|
|
|
extern void msiobj_unlock(MSIOBJECTHDR *);
|
2003-08-13 03:27:48 +02:00
|
|
|
|
|
|
|
extern void free_cached_tables( MSIDATABASE *db );
|
2005-10-27 14:25:04 +02:00
|
|
|
extern void msi_free_transforms( MSIDATABASE *db );
|
2005-09-16 21:01:40 +02:00
|
|
|
extern string_table *load_string_table( IStorage *stg );
|
2004-03-18 05:04:08 +01:00
|
|
|
extern UINT MSI_CommitTables( MSIDATABASE *db );
|
2004-03-19 02:16:36 +01:00
|
|
|
extern HRESULT init_string_table( IStorage *stg );
|
2004-03-18 05:04:08 +01:00
|
|
|
|
2004-03-17 21:49:59 +01:00
|
|
|
|
|
|
|
/* string table functions */
|
2005-07-06 12:33:30 +02:00
|
|
|
extern BOOL msi_addstring( string_table *st, UINT string_no, const CHAR *data, int len, UINT refcount );
|
|
|
|
extern BOOL msi_addstringW( string_table *st, UINT string_no, const WCHAR *data, int len, UINT refcount );
|
2004-03-18 05:04:08 +01:00
|
|
|
extern UINT msi_id2stringW( string_table *st, UINT string_no, LPWSTR buffer, UINT *sz );
|
|
|
|
extern UINT msi_id2stringA( string_table *st, UINT string_no, LPSTR buffer, UINT *sz );
|
2004-03-19 02:16:36 +01:00
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
extern LPWSTR MSI_makestring( MSIDATABASE *db, UINT stringid);
|
2004-06-30 20:18:27 +02:00
|
|
|
extern UINT msi_string2idW( string_table *st, LPCWSTR buffer, UINT *id );
|
2004-03-19 02:16:36 +01:00
|
|
|
extern UINT msi_string2idA( string_table *st, LPCSTR str, UINT *id );
|
2004-06-26 02:18:36 +02:00
|
|
|
extern string_table *msi_init_stringtable( int entries, UINT codepage );
|
2004-03-17 21:49:59 +01:00
|
|
|
extern VOID msi_destroy_stringtable( string_table *st );
|
2004-03-18 05:04:08 +01:00
|
|
|
extern UINT msi_string_count( string_table *st );
|
|
|
|
extern UINT msi_id_refcount( string_table *st, UINT i );
|
2004-06-30 20:24:33 +02:00
|
|
|
extern UINT msi_string_totalsize( string_table *st, UINT *last );
|
2004-06-26 02:11:08 +02:00
|
|
|
extern UINT msi_strcmp( string_table *st, UINT lval, UINT rval, UINT *res );
|
2004-06-30 20:18:27 +02:00
|
|
|
extern const WCHAR *msi_string_lookup_id( string_table *st, UINT id );
|
2004-06-30 20:24:33 +02:00
|
|
|
extern UINT msi_string_get_codepage( string_table *st );
|
2004-06-26 02:11:08 +02:00
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
|
2005-05-23 11:53:43 +02:00
|
|
|
extern UINT VIEW_find_column( MSIVIEW *view, LPCWSTR name, UINT *n );
|
2003-08-13 03:27:48 +02:00
|
|
|
|
2004-03-19 02:16:36 +01:00
|
|
|
extern BOOL TABLE_Exists( MSIDATABASE *db, LPWSTR name );
|
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
extern UINT read_raw_stream_data( MSIDATABASE*, LPCWSTR stname,
|
2004-06-28 22:34:35 +02:00
|
|
|
USHORT **pdata, UINT *psz );
|
2005-01-26 20:41:13 +01:00
|
|
|
|
2005-10-26 15:56:33 +02:00
|
|
|
/* transform functions */
|
|
|
|
extern UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg );
|
|
|
|
|
2005-01-26 20:41:13 +01:00
|
|
|
/* action internals */
|
2005-09-30 12:32:41 +02:00
|
|
|
extern UINT MSI_InstallPackage( MSIPACKAGE *, LPCWSTR, LPCWSTR );
|
2005-01-03 15:29:09 +01:00
|
|
|
extern void ACTION_free_package_structures( MSIPACKAGE* );
|
2005-02-02 10:55:51 +01:00
|
|
|
extern UINT ACTION_DialogBox( MSIPACKAGE*, LPCWSTR);
|
2005-09-21 12:55:23 +02:00
|
|
|
extern UINT MSI_Sequence( MSIPACKAGE *package, LPCWSTR szTable, INT iSequenceMode );
|
2004-06-28 22:34:35 +02:00
|
|
|
|
2004-06-30 20:18:27 +02:00
|
|
|
/* record internals */
|
2004-07-10 00:25:34 +02:00
|
|
|
extern UINT MSI_RecordSetIStream( MSIRECORD *, unsigned int, IStream *);
|
2005-04-11 14:47:20 +02:00
|
|
|
extern UINT MSI_RecordGetIStream( MSIRECORD *, unsigned int, IStream **);
|
2004-07-10 00:25:34 +02:00
|
|
|
extern const WCHAR *MSI_RecordGetString( MSIRECORD *, unsigned int );
|
|
|
|
extern MSIRECORD *MSI_CreateRecord( unsigned int );
|
|
|
|
extern UINT MSI_RecordSetInteger( MSIRECORD *, unsigned int, int );
|
|
|
|
extern UINT MSI_RecordSetStringW( MSIRECORD *, unsigned int, LPCWSTR );
|
2005-05-31 11:30:28 +02:00
|
|
|
extern UINT MSI_RecordSetStringA( MSIRECORD *, unsigned int, LPCSTR );
|
2004-07-10 00:25:34 +02:00
|
|
|
extern BOOL MSI_RecordIsNull( MSIRECORD *, unsigned int );
|
|
|
|
extern UINT MSI_RecordGetStringW( MSIRECORD * , unsigned int, LPWSTR, DWORD *);
|
2004-11-28 15:53:46 +01:00
|
|
|
extern UINT MSI_RecordGetStringA( MSIRECORD *, unsigned int, LPSTR, DWORD *);
|
2004-07-10 00:25:34 +02:00
|
|
|
extern int MSI_RecordGetInteger( MSIRECORD *, unsigned int );
|
|
|
|
extern UINT MSI_RecordReadStream( MSIRECORD *, unsigned int, char *, DWORD *);
|
|
|
|
extern unsigned int MSI_RecordGetFieldCount( MSIRECORD *rec );
|
2005-05-31 11:30:28 +02:00
|
|
|
extern UINT MSI_RecordSetStreamW( MSIRECORD *, unsigned int, LPCWSTR );
|
|
|
|
extern UINT MSI_RecordSetStreamA( MSIRECORD *, unsigned int, LPCSTR );
|
|
|
|
extern UINT MSI_RecordDataSize( MSIRECORD *, unsigned int );
|
2005-06-23 18:43:38 +02:00
|
|
|
extern UINT MSI_RecordStreamToFile( MSIRECORD *, unsigned int, LPCWSTR );
|
2004-06-30 20:18:27 +02:00
|
|
|
|
|
|
|
/* stream internals */
|
2004-06-29 05:41:28 +02:00
|
|
|
extern UINT get_raw_stream( MSIHANDLE hdb, LPCWSTR stname, IStream **stm );
|
|
|
|
extern UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm );
|
2004-06-29 05:57:39 +02:00
|
|
|
extern void enum_stream_names( IStorage *stg );
|
2004-06-29 05:41:28 +02:00
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
/* database internals */
|
|
|
|
extern UINT MSI_OpenDatabaseW( LPCWSTR, LPCWSTR, MSIDATABASE ** );
|
|
|
|
extern UINT MSI_DatabaseOpenViewW(MSIDATABASE *, LPCWSTR, MSIQUERY ** );
|
2005-01-21 17:19:11 +01:00
|
|
|
extern UINT MSI_OpenQuery( MSIDATABASE *, MSIQUERY **, LPCWSTR, ... );
|
2005-05-31 11:30:28 +02:00
|
|
|
typedef UINT (*record_func)( MSIRECORD *, LPVOID );
|
2005-02-02 10:55:51 +01:00
|
|
|
extern UINT MSI_IterateRecords( MSIQUERY *, DWORD *, record_func, LPVOID );
|
2005-06-02 12:29:28 +02:00
|
|
|
extern MSIRECORD *MSI_QueryGetRecord( MSIDATABASE *db, LPCWSTR query, ... );
|
2005-05-31 11:30:28 +02:00
|
|
|
extern UINT MSI_DatabaseImport( MSIDATABASE *, LPCWSTR, LPCWSTR );
|
|
|
|
extern UINT MSI_DatabaseExport( MSIDATABASE *, LPCWSTR, LPCWSTR, LPCWSTR );
|
|
|
|
extern UINT MSI_DatabaseGetPrimaryKeys( MSIDATABASE *, LPCWSTR, MSIRECORD ** );
|
2004-07-10 00:25:34 +02:00
|
|
|
|
|
|
|
/* view internals */
|
|
|
|
extern UINT MSI_ViewExecute( MSIQUERY*, MSIRECORD * );
|
|
|
|
extern UINT MSI_ViewFetch( MSIQUERY*, MSIRECORD ** );
|
|
|
|
extern UINT MSI_ViewClose( MSIQUERY* );
|
|
|
|
|
|
|
|
/* package internals */
|
2005-01-28 13:39:57 +01:00
|
|
|
extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE * );
|
|
|
|
extern UINT MSI_OpenPackageW( LPCWSTR szPackage, MSIPACKAGE ** );
|
|
|
|
extern UINT MSI_SetTargetPathW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
|
2004-07-10 00:25:34 +02:00
|
|
|
extern UINT MSI_SetPropertyW( MSIPACKAGE *, LPCWSTR, LPCWSTR );
|
2005-01-28 13:39:57 +01:00
|
|
|
extern INT MSI_ProcessMessage( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * );
|
|
|
|
extern UINT MSI_GetPropertyW( MSIPACKAGE *, LPCWSTR, LPWSTR, DWORD * );
|
2005-05-31 11:30:28 +02:00
|
|
|
extern UINT MSI_GetPropertyA(MSIPACKAGE *, LPCSTR, LPSTR, DWORD* );
|
2004-07-10 00:25:34 +02:00
|
|
|
extern MSICONDITION MSI_EvaluateConditionW( MSIPACKAGE *, LPCWSTR );
|
2005-01-28 13:39:57 +01:00
|
|
|
extern UINT MSI_GetComponentStateW( MSIPACKAGE *, LPWSTR, INSTALLSTATE *, INSTALLSTATE * );
|
|
|
|
extern UINT MSI_GetFeatureStateW( MSIPACKAGE *, LPWSTR, INSTALLSTATE *, INSTALLSTATE * );
|
2005-05-13 15:56:39 +02:00
|
|
|
extern UINT WINAPI MSI_SetFeatureStateW(MSIPACKAGE*, LPCWSTR, INSTALLSTATE );
|
2004-07-10 00:25:34 +02:00
|
|
|
|
2005-01-25 21:17:09 +01:00
|
|
|
/* for deformating */
|
2005-06-07 22:29:51 +02:00
|
|
|
extern UINT MSI_FormatRecordW( MSIPACKAGE *, MSIRECORD *, LPWSTR, DWORD * );
|
|
|
|
extern UINT MSI_FormatRecordA( MSIPACKAGE *, MSIRECORD *, LPSTR, DWORD * );
|
2005-01-25 21:17:09 +01:00
|
|
|
|
2004-07-10 00:25:34 +02:00
|
|
|
/* registry data encoding/decoding functions */
|
2005-01-28 13:39:57 +01:00
|
|
|
extern BOOL unsquash_guid(LPCWSTR in, LPWSTR out);
|
|
|
|
extern BOOL squash_guid(LPCWSTR in, LPWSTR out);
|
|
|
|
extern BOOL encode_base85_guid(GUID *,LPWSTR);
|
|
|
|
extern BOOL decode_base85_guid(LPCWSTR,GUID*);
|
|
|
|
extern UINT MSIREG_OpenUninstallKey(LPCWSTR szProduct, HKEY* key, BOOL create);
|
|
|
|
extern UINT MSIREG_OpenUserProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
|
|
|
|
extern UINT MSIREG_OpenFeatures(HKEY* key);
|
|
|
|
extern UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
|
|
|
|
extern UINT MSIREG_OpenComponents(HKEY* key);
|
2005-04-20 14:50:05 +02:00
|
|
|
extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
|
2005-01-28 13:39:57 +01:00
|
|
|
extern UINT MSIREG_OpenComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
|
|
|
|
extern UINT MSIREG_OpenProductsKey(LPCWSTR szProduct, HKEY* key, BOOL create);
|
|
|
|
extern UINT MSIREG_OpenUserFeaturesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
|
2005-06-01 13:02:19 +02:00
|
|
|
extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create);
|
2005-03-10 18:24:05 +01:00
|
|
|
extern UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
|
2005-06-07 22:02:27 +02:00
|
|
|
extern UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create);
|
2005-01-28 13:39:57 +01:00
|
|
|
|
2005-09-15 16:58:38 +02:00
|
|
|
extern LONG msi_reg_set_val_str( HKEY hkey, LPCWSTR name, LPCWSTR value );
|
|
|
|
extern LONG msi_reg_set_val_multi_str( HKEY hkey, LPCWSTR name, LPCWSTR value );
|
|
|
|
extern LONG msi_reg_set_val_dword( HKEY hkey, LPCWSTR name, DWORD val );
|
|
|
|
|
2005-01-28 13:39:57 +01:00
|
|
|
/* msi dialog interface */
|
2005-06-17 23:31:06 +02:00
|
|
|
typedef UINT (*msi_dialog_event_handler)( MSIPACKAGE*, LPCWSTR, LPCWSTR, msi_dialog* );
|
2005-02-02 10:55:51 +01:00
|
|
|
extern msi_dialog *msi_dialog_create( MSIPACKAGE*, LPCWSTR, msi_dialog_event_handler );
|
|
|
|
extern UINT msi_dialog_run_message_loop( msi_dialog* );
|
|
|
|
extern void msi_dialog_end_dialog( msi_dialog* );
|
2005-04-27 12:16:57 +02:00
|
|
|
extern void msi_dialog_check_messages( HANDLE );
|
2005-02-02 10:55:51 +01:00
|
|
|
extern void msi_dialog_do_preview( msi_dialog* );
|
|
|
|
extern void msi_dialog_destroy( msi_dialog* );
|
2005-04-27 12:16:57 +02:00
|
|
|
extern BOOL msi_dialog_register_class( void );
|
2005-01-28 13:39:57 +01:00
|
|
|
extern void msi_dialog_unregister_class( void );
|
2005-06-06 17:40:15 +02:00
|
|
|
extern void msi_dialog_handle_event( msi_dialog*, LPCWSTR, LPCWSTR, MSIRECORD * );
|
2004-07-04 02:26:54 +02:00
|
|
|
|
2005-06-07 22:29:51 +02:00
|
|
|
/* preview */
|
|
|
|
extern MSIPREVIEW *MSI_EnableUIPreview( MSIDATABASE * );
|
|
|
|
extern UINT MSI_PreviewDialogW( MSIPREVIEW *, LPCWSTR );
|
|
|
|
|
2005-10-26 12:10:50 +02:00
|
|
|
/* summary information */
|
|
|
|
extern MSISUMMARYINFO *MSI_GetSummaryInformationW( MSIDATABASE *db, UINT uiUpdateCount );
|
|
|
|
extern LPWSTR msi_suminfo_dup_string( MSISUMMARYINFO *si, UINT uiProperty );
|
|
|
|
|
2005-06-07 22:29:51 +02:00
|
|
|
/* undocumented functions */
|
|
|
|
UINT WINAPI MsiCreateAndVerifyInstallerDirectory( DWORD );
|
|
|
|
UINT WINAPI MsiDecomposeDescriptorW( LPCWSTR, LPWSTR, LPWSTR, LPWSTR, DWORD * );
|
|
|
|
UINT WINAPI MsiDecomposeDescriptorA( LPCSTR, LPSTR, LPSTR, LPSTR, DWORD * );
|
|
|
|
LANGID WINAPI MsiLoadStringW( MSIHANDLE, UINT, LPWSTR, int, LANGID );
|
|
|
|
LANGID WINAPI MsiLoadStringA( MSIHANDLE, UINT, LPSTR, int, LANGID );
|
|
|
|
|
2004-07-04 02:26:54 +02:00
|
|
|
/* UI globals */
|
|
|
|
extern INSTALLUILEVEL gUILevel;
|
|
|
|
extern HWND gUIhwnd;
|
2005-01-24 13:55:31 +01:00
|
|
|
extern INSTALLUI_HANDLERA gUIHandlerA;
|
|
|
|
extern INSTALLUI_HANDLERW gUIHandlerW;
|
2004-07-04 02:31:17 +02:00
|
|
|
extern DWORD gUIFilter;
|
|
|
|
extern LPVOID gUIContext;
|
2004-07-09 21:26:30 +02:00
|
|
|
extern WCHAR gszLogFile[MAX_PATH];
|
2004-07-04 02:26:54 +02:00
|
|
|
|
2005-09-20 13:57:19 +02:00
|
|
|
/* memory allocation macro functions */
|
|
|
|
static inline void *msi_alloc( size_t len )
|
|
|
|
{
|
|
|
|
return HeapAlloc( GetProcessHeap(), 0, len );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *msi_alloc_zero( size_t len )
|
|
|
|
{
|
|
|
|
return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, len );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *msi_realloc( void *mem, size_t len )
|
|
|
|
{
|
|
|
|
return HeapReAlloc( GetProcessHeap(), 0, mem, len );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *msi_realloc_zero( void *mem, size_t len )
|
|
|
|
{
|
|
|
|
return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline BOOL msi_free( void *mem )
|
|
|
|
{
|
|
|
|
return HeapFree( GetProcessHeap(), 0, mem );
|
|
|
|
}
|
|
|
|
|
2005-03-16 12:31:35 +01:00
|
|
|
inline static char *strdupWtoA( LPCWSTR str )
|
|
|
|
{
|
|
|
|
LPSTR ret = NULL;
|
2005-09-20 13:57:19 +02:00
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
if (!str) return ret;
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
|
|
|
|
ret = msi_alloc( len );
|
|
|
|
if (ret)
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, str, -1, ret, len, NULL, NULL );
|
2005-03-16 12:31:35 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static LPWSTR strdupAtoW( LPCSTR str )
|
|
|
|
{
|
|
|
|
LPWSTR ret = NULL;
|
2005-09-20 13:57:19 +02:00
|
|
|
DWORD len;
|
|
|
|
|
|
|
|
if (!str) return ret;
|
|
|
|
len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
|
|
|
|
ret = msi_alloc( len * sizeof(WCHAR) );
|
|
|
|
if (ret)
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len );
|
2005-03-16 12:31:35 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static LPWSTR strdupW( LPCWSTR src )
|
|
|
|
{
|
|
|
|
LPWSTR dest;
|
|
|
|
if (!src) return NULL;
|
2005-09-20 13:57:19 +02:00
|
|
|
dest = msi_alloc( (lstrlenW(src)+1)*sizeof(WCHAR) );
|
|
|
|
if (dest)
|
|
|
|
lstrcpyW(dest, src);
|
2005-03-16 12:31:35 +01:00
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2003-08-13 03:27:48 +02:00
|
|
|
#endif /* __WINE_MSI_PRIVATE__ */
|