2006-02-17 00:04:10 +00:00
|
|
|
/*
|
|
|
|
* Implementation of the Microsoft Installer (msi.dll)
|
|
|
|
*
|
|
|
|
* Copyright 2002-2005 Mike McCormack for CodeWeavers
|
2006-10-22 20:23:59 +00:00
|
|
|
* Copyright 2005 Aric Stewart for CodeWeavers
|
2006-02-17 00:04:10 +00: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
|
2006-08-01 23:12:11 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2006-02-17 00:04:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_MSI_PRIVATE__
|
|
|
|
#define __WINE_MSI_PRIVATE__
|
|
|
|
|
2014-02-07 18:02:02 +00:00
|
|
|
#include <stdarg.h>
|
2013-12-25 20:42:59 +00:00
|
|
|
|
2018-03-04 23:30:58 +00:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "fdi.h"
|
|
|
|
#include "msi.h"
|
|
|
|
#include "msiquery.h"
|
|
|
|
#include "msidefs.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
#include "objidl.h"
|
|
|
|
#include "fusion.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
#include "winver.h"
|
|
|
|
#include "wine/list.h"
|
|
|
|
#include "wine/debug.h"
|
2017-10-08 08:14:40 +00:00
|
|
|
|
2022-03-12 14:11:44 +00:00
|
|
|
#include "msiserver.h"
|
2022-03-12 14:12:08 +00:00
|
|
|
#include "winemsi_s.h"
|
2022-03-12 14:11:44 +00:00
|
|
|
|
2010-10-22 13:18:11 +00:00
|
|
|
static const BOOL is_64bit = sizeof(void *) > sizeof(int);
|
2022-03-13 18:05:10 +00:00
|
|
|
extern BOOL is_wow64 DECLSPEC_HIDDEN;
|
2010-10-22 13:18:11 +00:00
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
#define MSI_DATASIZEMASK 0x00ff
|
|
|
|
#define MSITYPE_VALID 0x0100
|
|
|
|
#define MSITYPE_LOCALIZABLE 0x200
|
|
|
|
#define MSITYPE_STRING 0x0800
|
|
|
|
#define MSITYPE_NULLABLE 0x1000
|
|
|
|
#define MSITYPE_KEY 0x2000
|
2008-01-16 10:11:22 +00:00
|
|
|
#define MSITYPE_TEMPORARY 0x4000
|
2012-01-21 17:19:12 +00:00
|
|
|
#define MSITYPE_UNKNOWN 0x8000
|
2006-02-17 00:04:10 +00:00
|
|
|
|
Finish the Wine sync. These components are not just rc file changes
atl, comctl32, comdlg32, dwmapi, fusion, gdiplus, jscript, mpr, mshtml, msi, msimtf, msxml3, ole32, oleaut32, riched20, shdocvw, shlwapi, urlmon, usp10, version and windowscodecs
Seems to build and boot. /me hides
svn path=/trunk/; revision=48273
2010-07-26 02:26:04 +00:00
|
|
|
#define MAX_STREAM_NAME_LEN 62
|
2010-10-22 13:18:11 +00:00
|
|
|
#define LONG_STR_BYTES 3
|
2006-08-30 19:24:26 +00:00
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
/* Install UI level mask for AND operation to exclude flags */
|
|
|
|
#define INSTALLUILEVEL_MASK 0x0007
|
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
#define MSITYPE_IS_BINARY(type) (((type) & ~MSITYPE_NULLABLE) == (MSITYPE_STRING|MSITYPE_VALID))
|
|
|
|
|
|
|
|
struct tagMSITABLE;
|
|
|
|
typedef struct tagMSITABLE MSITABLE;
|
|
|
|
|
|
|
|
struct string_table;
|
|
|
|
typedef struct string_table string_table;
|
|
|
|
|
|
|
|
struct tagMSIOBJECTHDR;
|
|
|
|
typedef struct tagMSIOBJECTHDR MSIOBJECTHDR;
|
|
|
|
|
|
|
|
typedef VOID (*msihandledestructor)( MSIOBJECTHDR * );
|
|
|
|
|
|
|
|
struct tagMSIOBJECTHDR
|
|
|
|
{
|
|
|
|
UINT magic;
|
|
|
|
UINT type;
|
|
|
|
LONG refcount;
|
|
|
|
msihandledestructor destructor;
|
|
|
|
};
|
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
#define MSI_INITIAL_MEDIA_TRANSFORM_OFFSET 10000
|
2022-03-12 23:16:16 +00:00
|
|
|
#define MSI_INITIAL_MEDIA_TRANSFORM_DISKID 32000
|
2012-01-21 17:19:12 +00:00
|
|
|
|
2015-03-09 20:28:19 +00:00
|
|
|
typedef struct tagMSISTREAM
|
|
|
|
{
|
|
|
|
UINT str_index;
|
|
|
|
IStream *stream;
|
|
|
|
} MSISTREAM;
|
|
|
|
|
|
|
|
typedef struct tagMSITRANSFORM
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
IStorage *stg;
|
|
|
|
} MSITRANSFORM;
|
|
|
|
|
2022-03-13 18:05:01 +00:00
|
|
|
/* integer versions of the MSIDBOPEN_* constants */
|
|
|
|
#define MSI_OPEN_READONLY 0
|
|
|
|
#define MSI_OPEN_TRANSACT 1
|
|
|
|
#define MSI_OPEN_DIRECT 2
|
|
|
|
#define MSI_OPEN_CREATE 3
|
|
|
|
#define MSI_OPEN_CREATEDIRECT 4
|
|
|
|
#define MSI_OPEN_PATCHFILE 32
|
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
typedef struct tagMSIDATABASE
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
IStorage *storage;
|
|
|
|
string_table *strings;
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT bytes_per_strref;
|
2006-10-22 20:23:59 +00:00
|
|
|
LPWSTR path;
|
2006-09-18 16:45:21 +00:00
|
|
|
LPWSTR deletefile;
|
2015-07-19 23:04:25 +00:00
|
|
|
LPWSTR tempfolder;
|
2022-03-13 18:05:01 +00:00
|
|
|
UINT mode;
|
2012-01-21 17:19:12 +00:00
|
|
|
UINT media_transform_offset;
|
|
|
|
UINT media_transform_disk_id;
|
2006-02-17 00:04:10 +00:00
|
|
|
struct list tables;
|
|
|
|
struct list transforms;
|
2015-03-09 20:28:19 +00:00
|
|
|
MSISTREAM *streams;
|
|
|
|
UINT num_streams;
|
|
|
|
UINT num_streams_allocated;
|
2006-02-17 00:04:10 +00:00
|
|
|
} MSIDATABASE;
|
|
|
|
|
|
|
|
typedef struct tagMSIVIEW MSIVIEW;
|
|
|
|
|
|
|
|
typedef struct tagMSIQUERY
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
MSIVIEW *view;
|
|
|
|
UINT row;
|
|
|
|
MSIDATABASE *db;
|
|
|
|
struct list mem;
|
|
|
|
} 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;
|
2012-12-09 19:43:59 +00:00
|
|
|
int len;
|
2006-02-17 00:04:10 +00:00
|
|
|
} MSIFIELD;
|
|
|
|
|
|
|
|
typedef struct tagMSIRECORD
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
UINT count; /* as passed to MsiCreateRecord */
|
2022-03-12 23:08:18 +00:00
|
|
|
UINT64 cookie;
|
2006-02-17 00:04:10 +00:00
|
|
|
MSIFIELD fields[1]; /* nb. array size is count+1 */
|
|
|
|
} MSIRECORD;
|
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
typedef struct tagMSISOURCELISTINFO
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
DWORD context;
|
|
|
|
DWORD options;
|
|
|
|
LPCWSTR property;
|
|
|
|
LPWSTR value;
|
|
|
|
} MSISOURCELISTINFO;
|
|
|
|
|
|
|
|
typedef struct tagMSIMEDIADISK
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
DWORD context;
|
|
|
|
DWORD options;
|
|
|
|
DWORD disk_id;
|
|
|
|
LPWSTR volume_label;
|
|
|
|
LPWSTR disk_prompt;
|
|
|
|
} MSIMEDIADISK;
|
|
|
|
|
2008-05-17 19:46:01 +00:00
|
|
|
typedef struct tagMSIMEDIAINFO
|
|
|
|
{
|
|
|
|
UINT disk_id;
|
|
|
|
UINT type;
|
|
|
|
UINT last_sequence;
|
|
|
|
LPWSTR disk_prompt;
|
|
|
|
LPWSTR cabinet;
|
|
|
|
LPWSTR volume_label;
|
2022-03-12 23:16:21 +00:00
|
|
|
LPWSTR last_volume;
|
2008-05-17 19:46:01 +00:00
|
|
|
BOOL is_continuous;
|
|
|
|
BOOL is_extracted;
|
2010-05-29 08:55:43 +00:00
|
|
|
WCHAR sourcedir[MAX_PATH];
|
2008-05-17 19:46:01 +00:00
|
|
|
} MSIMEDIAINFO;
|
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
typedef struct tagMSICABINETSTREAM
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
UINT disk_id;
|
|
|
|
IStorage *storage;
|
|
|
|
WCHAR *stream;
|
|
|
|
} MSICABINETSTREAM;
|
|
|
|
|
2008-12-27 15:10:14 +00:00
|
|
|
typedef struct tagMSIPATCHINFO
|
|
|
|
{
|
2010-05-29 08:55:43 +00:00
|
|
|
struct list entry;
|
2008-12-27 15:10:14 +00:00
|
|
|
LPWSTR patchcode;
|
2012-01-21 17:19:12 +00:00
|
|
|
LPWSTR products;
|
2008-12-27 15:10:14 +00:00
|
|
|
LPWSTR transforms;
|
2012-01-21 17:19:12 +00:00
|
|
|
LPWSTR filename;
|
2010-05-29 08:55:43 +00:00
|
|
|
LPWSTR localfile;
|
Finish the Wine sync. These components are not just rc file changes
atl, comctl32, comdlg32, dwmapi, fusion, gdiplus, jscript, mpr, mshtml, msi, msimtf, msxml3, ole32, oleaut32, riched20, shdocvw, shlwapi, urlmon, usp10, version and windowscodecs
Seems to build and boot. /me hides
svn path=/trunk/; revision=48273
2010-07-26 02:26:04 +00:00
|
|
|
MSIPATCHSTATE state;
|
2017-06-03 22:29:55 +00:00
|
|
|
DWORD uninstallable;
|
2012-01-21 17:19:12 +00:00
|
|
|
BOOL delete_on_close;
|
2015-07-19 23:04:25 +00:00
|
|
|
BOOL registered;
|
|
|
|
UINT disk_id;
|
2008-12-27 15:10:14 +00:00
|
|
|
} MSIPATCHINFO;
|
|
|
|
|
2011-03-20 08:47:41 +00:00
|
|
|
typedef struct tagMSIBINARY
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
WCHAR *source;
|
|
|
|
WCHAR *tmpfile;
|
|
|
|
} MSIBINARY;
|
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
typedef struct _column_info
|
|
|
|
{
|
|
|
|
LPCWSTR table;
|
|
|
|
LPCWSTR column;
|
|
|
|
INT type;
|
|
|
|
struct expr *val;
|
|
|
|
struct _column_info *next;
|
|
|
|
} column_info;
|
|
|
|
|
2006-11-28 11:21:39 +00:00
|
|
|
typedef const struct tagMSICOLUMNHASHENTRY *MSIITERHANDLE;
|
2006-08-01 23:12:11 +00:00
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
typedef struct tagMSIVIEWOPS
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* fetch_int - reads one integer from {row,col} in the table
|
|
|
|
*
|
|
|
|
* This function should be called after the execute method.
|
2006-10-22 20:23:59 +00:00
|
|
|
* Data returned by the function should not change until
|
2006-02-17 00:04:10 +00:00
|
|
|
* close or delete is called.
|
|
|
|
* To get a string value, query the database's string table with
|
|
|
|
* the integer value returned from this function.
|
|
|
|
*/
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT (*fetch_int)( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val );
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/*
|
2006-08-01 23:12:11 +00:00
|
|
|
* fetch_stream - gets a stream from {row,col} in the table
|
2006-02-17 00:04:10 +00:00
|
|
|
*
|
|
|
|
* This function is similar to fetch_int, except fetches a
|
|
|
|
* stream instead of an integer.
|
|
|
|
*/
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT (*fetch_stream)( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm );
|
|
|
|
|
2022-03-12 23:16:33 +00:00
|
|
|
/*
|
|
|
|
* set_int - set the integer value at {row, col}
|
|
|
|
* This function has undefined behaviour if the column does not contain
|
|
|
|
* integers.
|
|
|
|
*/
|
|
|
|
UINT (*set_int)( struct tagMSIVIEW *view, UINT row, UINT col, int val );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set_string - set the string value at {row, col}
|
|
|
|
* This function has undefined behaviour if the column does not contain
|
|
|
|
* strings.
|
|
|
|
*/
|
|
|
|
UINT (*set_string)( struct tagMSIVIEW *view, UINT row, UINT col, const WCHAR *val, int len );
|
|
|
|
|
2022-03-12 23:16:38 +00:00
|
|
|
/*
|
|
|
|
* set_stream - set the stream value at {row, col}
|
|
|
|
* This function has undefined behaviour if the column does not contain
|
|
|
|
* streams.
|
|
|
|
*/
|
|
|
|
UINT (*set_stream)( struct tagMSIVIEW *view, UINT row, UINT col, IStream *stream );
|
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
/*
|
2006-11-28 11:21:39 +00:00
|
|
|
* set_row - sets values in a row as specified by mask
|
2006-02-17 00:04:10 +00:00
|
|
|
*
|
|
|
|
* Similar semantics to fetch_int
|
|
|
|
*/
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT (*set_row)( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask );
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Inserts a new row into the database from the records contents
|
|
|
|
*/
|
2009-05-20 12:59:23 +00:00
|
|
|
UINT (*insert_row)( struct tagMSIVIEW *view, MSIRECORD *record, UINT row, BOOL temporary );
|
2008-01-16 10:11:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Deletes a row from the database
|
|
|
|
*/
|
|
|
|
UINT (*delete_row)( struct tagMSIVIEW *view, UINT row );
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* execute - loads the underlying data into memory so it can be read
|
|
|
|
*/
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT (*execute)( struct tagMSIVIEW *view, MSIRECORD *record );
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* close - clears the data read by execute from memory
|
|
|
|
*/
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT (*close)( struct tagMSIVIEW *view );
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT (*get_dimensions)( struct tagMSIVIEW *view, UINT *rows, UINT *cols );
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* get_column_info - returns the name and type of a specific column
|
|
|
|
*
|
|
|
|
* The column information can be queried at any time.
|
|
|
|
*/
|
2012-01-21 17:19:12 +00:00
|
|
|
UINT (*get_column_info)( struct tagMSIVIEW *view, UINT n, LPCWSTR *name, UINT *type,
|
|
|
|
BOOL *temporary, LPCWSTR *table_name );
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* modify - not yet implemented properly
|
|
|
|
*/
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT (*modify)( struct tagMSIVIEW *view, MSIMODIFY eModifyMode, MSIRECORD *record, UINT row );
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* delete - destroys the structure completely
|
|
|
|
*/
|
|
|
|
UINT (*delete)( struct tagMSIVIEW * );
|
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
/*
|
|
|
|
* add_ref - increases the reference count of the table
|
|
|
|
*/
|
|
|
|
UINT (*add_ref)( struct tagMSIVIEW *view );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* release - decreases the reference count of the table
|
|
|
|
*/
|
|
|
|
UINT (*release)( struct tagMSIVIEW *view );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* add_column - adds a column to the table
|
|
|
|
*/
|
2022-03-13 18:08:43 +00:00
|
|
|
UINT (*add_column)( struct tagMSIVIEW *view, LPCWSTR column, INT type, BOOL hold );
|
2008-01-16 10:11:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* sort - orders the table by columns
|
|
|
|
*/
|
|
|
|
UINT (*sort)( struct tagMSIVIEW *view, column_info *columns );
|
2008-12-27 15:10:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* drop - drops the table from the database
|
|
|
|
*/
|
|
|
|
UINT (*drop)( struct tagMSIVIEW *view );
|
2006-02-17 00:04:10 +00:00
|
|
|
} MSIVIEWOPS;
|
|
|
|
|
|
|
|
struct tagMSIVIEW
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
2006-08-01 23:12:11 +00:00
|
|
|
const MSIVIEWOPS *ops;
|
2012-01-21 17:19:12 +00:00
|
|
|
MSIDBERROR error;
|
|
|
|
const WCHAR *error_column;
|
2006-02-17 00:04:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct msi_dialog_tag;
|
|
|
|
typedef struct msi_dialog_tag msi_dialog;
|
|
|
|
|
2010-10-22 13:18:11 +00:00
|
|
|
enum platform
|
|
|
|
{
|
2022-03-13 18:08:14 +00:00
|
|
|
PLATFORM_UNRECOGNIZED,
|
2010-10-22 13:18:11 +00:00
|
|
|
PLATFORM_INTEL,
|
|
|
|
PLATFORM_INTEL64,
|
2012-05-14 21:41:31 +00:00
|
|
|
PLATFORM_X64,
|
2022-03-12 23:16:15 +00:00
|
|
|
PLATFORM_ARM,
|
|
|
|
PLATFORM_ARM64
|
2010-10-22 13:18:11 +00:00
|
|
|
};
|
|
|
|
|
2011-03-20 08:47:41 +00:00
|
|
|
enum clr_version
|
|
|
|
{
|
2012-01-21 17:19:12 +00:00
|
|
|
CLR_VERSION_V10,
|
2011-03-20 08:47:41 +00:00
|
|
|
CLR_VERSION_V11,
|
|
|
|
CLR_VERSION_V20,
|
2012-08-13 16:17:18 +00:00
|
|
|
CLR_VERSION_V40,
|
2011-03-20 08:47:41 +00:00
|
|
|
CLR_VERSION_MAX
|
|
|
|
};
|
|
|
|
|
2018-01-20 11:29:30 +00:00
|
|
|
enum script
|
|
|
|
{
|
|
|
|
SCRIPT_NONE = -1,
|
|
|
|
SCRIPT_INSTALL = 0,
|
|
|
|
SCRIPT_COMMIT = 1,
|
|
|
|
SCRIPT_ROLLBACK = 2,
|
|
|
|
SCRIPT_MAX = 3
|
|
|
|
};
|
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
typedef struct tagMSIPACKAGE
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
MSIDATABASE *db;
|
2010-10-22 13:18:11 +00:00
|
|
|
INT version;
|
|
|
|
enum platform platform;
|
|
|
|
UINT num_langids;
|
|
|
|
LANGID *langids;
|
2022-03-13 00:17:50 +00:00
|
|
|
void *cookie;
|
2010-05-29 08:55:43 +00:00
|
|
|
struct list patches;
|
2006-02-17 00:04:10 +00:00
|
|
|
struct list components;
|
|
|
|
struct list features;
|
|
|
|
struct list files;
|
2012-01-21 17:19:12 +00:00
|
|
|
struct list filepatches;
|
2006-02-17 00:04:10 +00:00
|
|
|
struct list tempfiles;
|
|
|
|
struct list folders;
|
2011-03-20 08:47:41 +00:00
|
|
|
struct list binaries;
|
2012-01-21 17:19:12 +00:00
|
|
|
struct list cabinet_streams;
|
2006-02-17 00:04:10 +00:00
|
|
|
LPWSTR ActionFormat;
|
|
|
|
LPWSTR LastAction;
|
2017-10-08 08:14:40 +00:00
|
|
|
LPWSTR LastActionTemplate;
|
|
|
|
UINT LastActionResult;
|
2012-08-13 16:17:18 +00:00
|
|
|
UINT action_progress_increment;
|
2011-03-20 08:47:41 +00:00
|
|
|
HANDLE log_file;
|
2022-03-12 23:42:57 +00:00
|
|
|
HMODULE hfusion10;
|
|
|
|
HMODULE hfusion11;
|
|
|
|
HMODULE hfusion20;
|
|
|
|
HMODULE hfusion40;
|
|
|
|
HMODULE hmscoree;
|
|
|
|
HRESULT (WINAPI *pGetFileVersion)( const WCHAR *, WCHAR *, DWORD, DWORD * );
|
|
|
|
HRESULT (WINAPI *pCreateAssemblyNameObject)( IAssemblyName **, const WCHAR *, DWORD, void * );
|
|
|
|
HRESULT (WINAPI *pCreateAssemblyEnum)( IAssemblyEnum **, IUnknown *, IAssemblyName *, DWORD, void * );
|
2011-03-20 08:47:41 +00:00
|
|
|
IAssemblyCache *cache_net[CLR_VERSION_MAX];
|
|
|
|
IAssemblyCache *cache_sxs;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
struct list classes;
|
|
|
|
struct list extensions;
|
|
|
|
struct list progids;
|
|
|
|
struct list mimes;
|
|
|
|
struct list appids;
|
2006-08-30 19:24:26 +00:00
|
|
|
|
2022-03-12 15:34:06 +00:00
|
|
|
enum script script;
|
2018-01-20 11:29:30 +00:00
|
|
|
LPWSTR *script_actions[SCRIPT_MAX];
|
|
|
|
int script_actions_count[SCRIPT_MAX];
|
|
|
|
LPWSTR *unique_actions;
|
|
|
|
int unique_actions_count;
|
|
|
|
BOOL ExecuteSequenceRun;
|
|
|
|
UINT InWhatSequence;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
struct list RunningActions;
|
|
|
|
|
2022-03-12 22:22:09 +00:00
|
|
|
HANDLE custom_server_32_process;
|
|
|
|
HANDLE custom_server_64_process;
|
|
|
|
HANDLE custom_server_32_pipe;
|
|
|
|
HANDLE custom_server_64_pipe;
|
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
LPWSTR PackagePath;
|
|
|
|
LPWSTR ProductCode;
|
2012-01-21 17:19:12 +00:00
|
|
|
LPWSTR localfile;
|
|
|
|
BOOL delete_on_close;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
2012-05-14 21:41:31 +00:00
|
|
|
INSTALLUILEVEL ui_level;
|
2006-02-17 00:04:10 +00:00
|
|
|
msi_dialog *dialog;
|
|
|
|
LPWSTR next_dialog;
|
2006-09-09 17:48:42 +00:00
|
|
|
float center_x;
|
|
|
|
float center_y;
|
2006-08-30 19:24:26 +00:00
|
|
|
|
|
|
|
UINT WordCount;
|
2008-05-17 19:46:01 +00:00
|
|
|
UINT Context;
|
2006-08-30 19:24:26 +00:00
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
struct list subscriptions;
|
2008-01-16 10:11:22 +00:00
|
|
|
|
|
|
|
struct list sourcelist_info;
|
|
|
|
struct list sourcelist_media;
|
|
|
|
|
|
|
|
unsigned char scheduled_action_running : 1;
|
|
|
|
unsigned char commit_action_running : 1;
|
|
|
|
unsigned char rollback_action_running : 1;
|
2012-05-14 21:41:31 +00:00
|
|
|
unsigned char need_reboot_at_end : 1;
|
|
|
|
unsigned char need_reboot_now : 1;
|
2012-01-21 17:19:12 +00:00
|
|
|
unsigned char need_rollback : 1;
|
2022-03-12 16:01:10 +00:00
|
|
|
unsigned char rpc_server_started : 1;
|
2006-02-17 00:04:10 +00:00
|
|
|
} MSIPACKAGE;
|
|
|
|
|
|
|
|
typedef struct tagMSIPREVIEW
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
|
|
|
MSIPACKAGE *package;
|
|
|
|
msi_dialog *dialog;
|
|
|
|
} MSIPREVIEW;
|
|
|
|
|
|
|
|
#define MSI_MAX_PROPS 20
|
|
|
|
|
|
|
|
typedef struct tagMSISUMMARYINFO
|
|
|
|
{
|
|
|
|
MSIOBJECTHDR hdr;
|
2006-11-28 11:21:39 +00:00
|
|
|
IStorage *storage;
|
2006-02-17 00:04:10 +00:00
|
|
|
DWORD update_count;
|
|
|
|
PROPVARIANT property[MSI_MAX_PROPS];
|
|
|
|
} MSISUMMARYINFO;
|
|
|
|
|
2006-10-22 20:23:59 +00:00
|
|
|
typedef struct tagMSIFEATURE
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR Feature;
|
|
|
|
LPWSTR Feature_Parent;
|
|
|
|
LPWSTR Title;
|
|
|
|
LPWSTR Description;
|
|
|
|
INT Display;
|
|
|
|
INT Level;
|
|
|
|
LPWSTR Directory;
|
|
|
|
INT Attributes;
|
|
|
|
INSTALLSTATE Installed;
|
|
|
|
INSTALLSTATE ActionRequest;
|
|
|
|
INSTALLSTATE Action;
|
|
|
|
struct list Children;
|
|
|
|
struct list Components;
|
|
|
|
} MSIFEATURE;
|
|
|
|
|
2011-03-20 08:47:41 +00:00
|
|
|
typedef struct tagMSIASSEMBLY
|
|
|
|
{
|
|
|
|
LPWSTR feature;
|
|
|
|
LPWSTR manifest;
|
|
|
|
LPWSTR application;
|
|
|
|
DWORD attributes;
|
|
|
|
LPWSTR display_name;
|
|
|
|
LPWSTR tempdir;
|
|
|
|
BOOL installed;
|
|
|
|
BOOL clr_version[CLR_VERSION_MAX];
|
|
|
|
} MSIASSEMBLY;
|
|
|
|
|
2006-10-22 20:23:59 +00:00
|
|
|
typedef struct tagMSICOMPONENT
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR Component;
|
|
|
|
LPWSTR ComponentId;
|
|
|
|
LPWSTR Directory;
|
|
|
|
INT Attributes;
|
|
|
|
LPWSTR Condition;
|
|
|
|
LPWSTR KeyPath;
|
|
|
|
INSTALLSTATE Installed;
|
|
|
|
INSTALLSTATE ActionRequest;
|
|
|
|
INSTALLSTATE Action;
|
|
|
|
BOOL ForceLocalState;
|
|
|
|
BOOL Enabled;
|
|
|
|
INT Cost;
|
|
|
|
INT RefCount;
|
|
|
|
LPWSTR FullKeypath;
|
|
|
|
LPWSTR AdvertiseString;
|
2011-03-20 08:47:41 +00:00
|
|
|
MSIASSEMBLY *assembly;
|
2012-12-09 19:43:59 +00:00
|
|
|
int num_clients;
|
2008-01-16 10:11:22 +00:00
|
|
|
|
|
|
|
unsigned int anyAbsent:1;
|
2014-04-23 14:48:52 +00:00
|
|
|
unsigned int hasAdvertisedFeature:1;
|
2008-01-16 10:11:22 +00:00
|
|
|
unsigned int hasLocalFeature:1;
|
|
|
|
unsigned int hasSourceFeature:1;
|
2022-03-13 18:08:45 +00:00
|
|
|
unsigned int added:1;
|
|
|
|
unsigned int updated:1;
|
2006-10-22 20:23:59 +00:00
|
|
|
} MSICOMPONENT;
|
|
|
|
|
|
|
|
typedef struct tagComponentList
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
MSICOMPONENT *component;
|
|
|
|
} ComponentList;
|
|
|
|
|
|
|
|
typedef struct tagFeatureList
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
MSIFEATURE *feature;
|
|
|
|
} FeatureList;
|
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
enum folder_state
|
|
|
|
{
|
|
|
|
FOLDER_STATE_UNINITIALIZED,
|
|
|
|
FOLDER_STATE_EXISTS,
|
|
|
|
FOLDER_STATE_CREATED,
|
|
|
|
FOLDER_STATE_CREATED_PERSISTENT,
|
|
|
|
FOLDER_STATE_REMOVED
|
|
|
|
};
|
|
|
|
|
2006-10-22 20:23:59 +00:00
|
|
|
typedef struct tagMSIFOLDER
|
|
|
|
{
|
|
|
|
struct list entry;
|
2012-01-21 17:19:12 +00:00
|
|
|
struct list children;
|
2006-10-22 20:23:59 +00:00
|
|
|
LPWSTR Directory;
|
2008-01-16 10:11:22 +00:00
|
|
|
LPWSTR Parent;
|
2006-10-22 20:23:59 +00:00
|
|
|
LPWSTR TargetDefault;
|
|
|
|
LPWSTR SourceLongPath;
|
|
|
|
LPWSTR SourceShortPath;
|
|
|
|
LPWSTR ResolvedTarget;
|
|
|
|
LPWSTR ResolvedSource;
|
2012-01-21 17:19:12 +00:00
|
|
|
enum folder_state State;
|
|
|
|
BOOL persistent;
|
2006-10-22 20:23:59 +00:00
|
|
|
} MSIFOLDER;
|
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
typedef struct tagFolderList
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
MSIFOLDER *folder;
|
|
|
|
} FolderList;
|
|
|
|
|
2006-10-22 20:23:59 +00:00
|
|
|
typedef enum _msi_file_state {
|
|
|
|
msifs_invalid,
|
|
|
|
msifs_missing,
|
|
|
|
msifs_overwrite,
|
|
|
|
msifs_present,
|
|
|
|
msifs_installed,
|
|
|
|
msifs_skipped,
|
2011-03-20 08:47:41 +00:00
|
|
|
msifs_hashmatch
|
2006-10-22 20:23:59 +00:00
|
|
|
} msi_file_state;
|
|
|
|
|
|
|
|
typedef struct tagMSIFILE
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR File;
|
|
|
|
MSICOMPONENT *Component;
|
|
|
|
LPWSTR FileName;
|
|
|
|
LPWSTR ShortName;
|
|
|
|
LPWSTR LongName;
|
|
|
|
INT FileSize;
|
|
|
|
LPWSTR Version;
|
|
|
|
LPWSTR Language;
|
|
|
|
INT Attributes;
|
|
|
|
INT Sequence;
|
|
|
|
msi_file_state state;
|
|
|
|
LPWSTR TargetPath;
|
|
|
|
BOOL IsCompressed;
|
2008-01-16 10:11:22 +00:00
|
|
|
MSIFILEHASHINFO hash;
|
2010-05-29 08:55:43 +00:00
|
|
|
UINT disk_id;
|
2006-10-22 20:23:59 +00:00
|
|
|
} MSIFILE;
|
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
typedef struct tagMSIFILEPATCH
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
MSIFILE *File;
|
|
|
|
INT Sequence;
|
|
|
|
INT PatchSize;
|
|
|
|
INT Attributes;
|
2015-07-19 23:04:25 +00:00
|
|
|
BOOL extracted;
|
|
|
|
UINT disk_id;
|
|
|
|
WCHAR *path;
|
2012-01-21 17:19:12 +00:00
|
|
|
} MSIFILEPATCH;
|
|
|
|
|
2006-10-22 20:23:59 +00:00
|
|
|
typedef struct tagMSIAPPID
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR AppID; /* Primary key */
|
|
|
|
LPWSTR RemoteServerName;
|
|
|
|
LPWSTR LocalServer;
|
|
|
|
LPWSTR ServiceParameters;
|
|
|
|
LPWSTR DllSurrogate;
|
|
|
|
BOOL ActivateAtStorage;
|
|
|
|
BOOL RunAsInteractiveUser;
|
|
|
|
} MSIAPPID;
|
|
|
|
|
|
|
|
typedef struct tagMSIPROGID MSIPROGID;
|
|
|
|
|
|
|
|
typedef struct tagMSICLASS
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR clsid; /* Primary Key */
|
|
|
|
LPWSTR Context; /* Primary Key */
|
|
|
|
MSICOMPONENT *Component;
|
|
|
|
MSIPROGID *ProgID;
|
|
|
|
LPWSTR ProgIDText;
|
|
|
|
LPWSTR Description;
|
|
|
|
MSIAPPID *AppID;
|
|
|
|
LPWSTR FileTypeMask;
|
|
|
|
LPWSTR IconPath;
|
|
|
|
LPWSTR DefInprocHandler;
|
|
|
|
LPWSTR DefInprocHandler32;
|
|
|
|
LPWSTR Argument;
|
|
|
|
MSIFEATURE *Feature;
|
|
|
|
INT Attributes;
|
|
|
|
/* not in the table, set during installation */
|
2014-04-23 14:48:52 +00:00
|
|
|
INSTALLSTATE action;
|
2006-10-22 20:23:59 +00:00
|
|
|
} MSICLASS;
|
|
|
|
|
|
|
|
typedef struct tagMSIMIME MSIMIME;
|
|
|
|
|
|
|
|
typedef struct tagMSIEXTENSION
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR Extension; /* Primary Key */
|
|
|
|
MSICOMPONENT *Component;
|
|
|
|
MSIPROGID *ProgID;
|
|
|
|
LPWSTR ProgIDText;
|
|
|
|
MSIMIME *Mime;
|
|
|
|
MSIFEATURE *Feature;
|
|
|
|
/* not in the table, set during installation */
|
2014-04-23 14:48:52 +00:00
|
|
|
INSTALLSTATE action;
|
2006-10-22 20:23:59 +00:00
|
|
|
struct list verbs;
|
|
|
|
} MSIEXTENSION;
|
|
|
|
|
|
|
|
struct tagMSIPROGID
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR ProgID; /* Primary Key */
|
|
|
|
MSIPROGID *Parent;
|
|
|
|
MSICLASS *Class;
|
|
|
|
LPWSTR Description;
|
|
|
|
LPWSTR IconPath;
|
|
|
|
/* not in the table, set during installation */
|
|
|
|
MSIPROGID *CurVer;
|
|
|
|
MSIPROGID *VersionInd;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct tagMSIVERB
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR Verb;
|
|
|
|
INT Sequence;
|
|
|
|
LPWSTR Command;
|
|
|
|
LPWSTR Argument;
|
|
|
|
} MSIVERB;
|
|
|
|
|
|
|
|
struct tagMSIMIME
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
LPWSTR ContentType; /* Primary Key */
|
|
|
|
MSIEXTENSION *Extension;
|
2010-05-29 08:55:43 +00:00
|
|
|
LPWSTR suffix;
|
2006-10-22 20:23:59 +00:00
|
|
|
LPWSTR clsid;
|
|
|
|
MSICLASS *Class;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SEQUENCE_UI 0x1
|
|
|
|
#define SEQUENCE_EXEC 0x2
|
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
#define MSIHANDLETYPE_ANY 0
|
|
|
|
#define MSIHANDLETYPE_DATABASE 1
|
|
|
|
#define MSIHANDLETYPE_SUMMARYINFO 2
|
|
|
|
#define MSIHANDLETYPE_VIEW 3
|
|
|
|
#define MSIHANDLETYPE_RECORD 4
|
|
|
|
#define MSIHANDLETYPE_PACKAGE 5
|
|
|
|
#define MSIHANDLETYPE_PREVIEW 6
|
|
|
|
|
2010-10-22 13:18:11 +00:00
|
|
|
#define MSI_MAJORVERSION 4
|
|
|
|
#define MSI_MINORVERSION 5
|
|
|
|
#define MSI_BUILDNUMBER 6001
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
#define GUID_SIZE 39
|
2016-11-22 12:25:27 +00:00
|
|
|
#define SQUASHED_GUID_SIZE 33
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
#define MSIHANDLE_MAGIC 0x4d434923
|
|
|
|
|
2022-03-13 22:53:14 +00:00
|
|
|
/* handle unicode/ansi output in the Msi* API functions */
|
2006-02-17 00:04:10 +00:00
|
|
|
typedef struct {
|
|
|
|
BOOL unicode;
|
|
|
|
union {
|
|
|
|
LPSTR a;
|
|
|
|
LPWSTR w;
|
|
|
|
} str;
|
|
|
|
} awstring;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
BOOL unicode;
|
|
|
|
union {
|
|
|
|
LPCSTR a;
|
|
|
|
LPCWSTR w;
|
|
|
|
} str;
|
|
|
|
} awcstring;
|
|
|
|
|
2012-12-09 19:43:59 +00:00
|
|
|
UINT msi_strcpy_to_awstring(const WCHAR *, int, awstring *, DWORD *) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
/* msi server interface */
|
2022-03-12 14:11:45 +00:00
|
|
|
extern MSIHANDLE msi_get_remote(MSIHANDLE handle) DECLSPEC_HIDDEN;
|
2022-03-12 22:54:40 +00:00
|
|
|
extern LONG WINAPI rpc_filter(EXCEPTION_POINTERS *eptr) DECLSPEC_HIDDEN;
|
2008-01-16 10:11:22 +00:00
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
/* handle functions */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void *msihandle2msiinfo(MSIHANDLE handle, UINT type) DECLSPEC_HIDDEN;
|
|
|
|
extern MSIHANDLE alloc_msihandle( MSIOBJECTHDR * ) DECLSPEC_HIDDEN;
|
2022-03-12 14:11:45 +00:00
|
|
|
extern MSIHANDLE alloc_msi_remote_handle(MSIHANDLE remote) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy ) DECLSPEC_HIDDEN;
|
|
|
|
extern void msiobj_addref(MSIOBJECTHDR *) DECLSPEC_HIDDEN;
|
|
|
|
extern int msiobj_release(MSIOBJECTHDR *) DECLSPEC_HIDDEN;
|
|
|
|
extern void msiobj_lock(MSIOBJECTHDR *) DECLSPEC_HIDDEN;
|
|
|
|
extern void msiobj_unlock(MSIOBJECTHDR *) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_free_handle_table(void) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void free_cached_tables( MSIDATABASE *db ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_CommitTables( MSIDATABASE *db ) DECLSPEC_HIDDEN;
|
2015-03-09 20:28:19 +00:00
|
|
|
extern UINT msi_commit_streams( MSIDATABASE *db ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* string table functions */
|
2022-03-12 23:16:29 +00:00
|
|
|
extern BOOL msi_add_string( string_table *st, const WCHAR *data, int len, BOOL persistent ) DECLSPEC_HIDDEN;
|
2012-12-09 19:43:59 +00:00
|
|
|
extern UINT msi_string2id( const string_table *st, const WCHAR *data, int len, UINT *id ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern VOID msi_destroy_stringtable( string_table *st ) DECLSPEC_HIDDEN;
|
2012-12-09 19:43:59 +00:00
|
|
|
extern const WCHAR *msi_string_lookup( const string_table *st, UINT id, int *len ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern HRESULT msi_init_string_table( IStorage *stg ) DECLSPEC_HIDDEN;
|
|
|
|
extern string_table *msi_load_string_table( IStorage *stg, UINT *bytes_per_strref ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_save_string_table( const string_table *st, IStorage *storage, UINT *bytes_per_strref ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_get_string_table_codepage( const string_table *st ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_set_string_table_codepage( string_table *st, UINT codepage ) DECLSPEC_HIDDEN;
|
2012-12-09 19:43:59 +00:00
|
|
|
extern WCHAR *msi_strdupW( const WCHAR *value, int len ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
extern BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name ) DECLSPEC_HIDDEN;
|
|
|
|
extern MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
extern UINT read_stream_data( IStorage *stg, LPCWSTR stname, BOOL table,
|
2012-01-21 17:19:12 +00:00
|
|
|
BYTE **pdata, UINT *psz ) DECLSPEC_HIDDEN;
|
2008-01-16 10:11:22 +00:00
|
|
|
extern UINT write_stream_data( IStorage *stg, LPCWSTR stname,
|
2012-01-21 17:19:12 +00:00
|
|
|
LPCVOID data, UINT sz, BOOL bTable ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* transform functions */
|
2022-03-13 18:08:38 +00:00
|
|
|
extern UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg, int err_cond ) DECLSPEC_HIDDEN;
|
2006-10-22 20:23:59 +00:00
|
|
|
extern UINT MSI_DatabaseApplyTransformW( MSIDATABASE *db,
|
2012-01-21 17:19:12 +00:00
|
|
|
LPCWSTR szTransformFile, int iErrorCond ) DECLSPEC_HIDDEN;
|
|
|
|
extern void append_storage_to_db( MSIDATABASE *db, IStorage *stg ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_apply_transforms( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
2010-05-29 08:55:43 +00:00
|
|
|
/* patch functions */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT msi_check_patch_applicable( MSIPACKAGE *package, MSISUMMARYINFO *si ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_apply_patches( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_apply_registered_patch( MSIPACKAGE *package, LPCWSTR patch_code ) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_free_patchinfo( MSIPATCHINFO *patch ) DECLSPEC_HIDDEN;
|
2009-10-17 21:16:57 +00:00
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
/* action internals */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSI_InstallPackage( MSIPACKAGE *, LPCWSTR, LPCWSTR ) DECLSPEC_HIDDEN;
|
2017-10-08 08:14:40 +00:00
|
|
|
extern INT ACTION_ShowDialog( MSIPACKAGE*, LPCWSTR) DECLSPEC_HIDDEN;
|
|
|
|
extern INT ACTION_DialogBox( MSIPACKAGE*, LPCWSTR) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT ACTION_ForceReboot(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_Sequence( MSIPACKAGE *package, LPCWSTR szTable ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_SetFeatureStates( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_parse_command_line( MSIPACKAGE *package, LPCWSTR szCommandLine, BOOL preserve_case ) DECLSPEC_HIDDEN;
|
2022-03-12 15:57:00 +00:00
|
|
|
extern const WCHAR *msi_get_command_line_option( const WCHAR *cmd, const WCHAR *option, UINT *len ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT msi_schedule_action( MSIPACKAGE *package, UINT script, const WCHAR *action ) DECLSPEC_HIDDEN;
|
|
|
|
extern INSTALLSTATE msi_get_component_action( MSIPACKAGE *package, MSICOMPONENT *comp ) DECLSPEC_HIDDEN;
|
|
|
|
extern INSTALLSTATE msi_get_feature_action( MSIPACKAGE *package, MSIFEATURE *feature ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_load_all_components( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_load_all_features( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_validate_product_id( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* record internals */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void MSI_CloseRecord( MSIOBJECTHDR * ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordSetIStream( MSIRECORD *, UINT, IStream *) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordGetIStream( MSIRECORD *, UINT, IStream **) DECLSPEC_HIDDEN;
|
|
|
|
extern const WCHAR *MSI_RecordGetString( const MSIRECORD *, UINT ) DECLSPEC_HIDDEN;
|
|
|
|
extern MSIRECORD *MSI_CreateRecord( UINT ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordSetInteger( MSIRECORD *, UINT, int ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordSetStringW( MSIRECORD *, UINT, LPCWSTR ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL MSI_RecordIsNull( MSIRECORD *, UINT ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordGetStringW( MSIRECORD * , UINT, LPWSTR, LPDWORD) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordGetStringA( MSIRECORD *, UINT, LPSTR, LPDWORD) DECLSPEC_HIDDEN;
|
|
|
|
extern int MSI_RecordGetInteger( MSIRECORD *, UINT ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordReadStream( MSIRECORD *, UINT, char *, LPDWORD) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordSetStream(MSIRECORD *, UINT, IStream *) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordGetFieldCount( const MSIRECORD *rec ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordStreamToFile( MSIRECORD *, UINT, LPCWSTR ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordSetStreamFromFileW( MSIRECORD *, UINT, LPCWSTR ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_RecordCopyField( MSIRECORD *, UINT, MSIRECORD *, UINT ) DECLSPEC_HIDDEN;
|
|
|
|
extern MSIRECORD *MSI_CloneRecord( MSIRECORD * ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL MSI_RecordsAreEqual( MSIRECORD *, MSIRECORD * ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL MSI_RecordsAreFieldsEqual(MSIRECORD *a, MSIRECORD *b, UINT field) DECLSPEC_HIDDEN;
|
2012-12-09 19:43:59 +00:00
|
|
|
extern UINT msi_record_set_string(MSIRECORD *, UINT, const WCHAR *, int) DECLSPEC_HIDDEN;
|
|
|
|
extern const WCHAR *msi_record_get_string(const MSIRECORD *, UINT, int *) DECLSPEC_HIDDEN;
|
2017-10-08 08:14:40 +00:00
|
|
|
extern void dump_record(MSIRECORD *) DECLSPEC_HIDDEN;
|
2022-03-12 14:11:49 +00:00
|
|
|
extern UINT unmarshal_record(const struct wire_record *in, MSIHANDLE *out) DECLSPEC_HIDDEN;
|
2022-03-12 14:11:54 +00:00
|
|
|
extern struct wire_record *marshal_record(MSIHANDLE handle) DECLSPEC_HIDDEN;
|
|
|
|
extern void free_remote_record(struct wire_record *rec) DECLSPEC_HIDDEN;
|
2022-03-12 14:11:55 +00:00
|
|
|
extern UINT copy_remote_record(const struct wire_record *rec, MSIHANDLE handle) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* stream internals */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void enum_stream_names( IStorage *stg ) DECLSPEC_HIDDEN;
|
|
|
|
extern LPWSTR encode_streamname(BOOL bTable, LPCWSTR in) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL decode_streamname(LPCWSTR in, LPWSTR out) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* database internals */
|
2015-03-09 20:28:19 +00:00
|
|
|
extern UINT msi_get_stream( MSIDATABASE *, const WCHAR *, IStream ** ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSI_OpenDatabaseW( LPCWSTR, LPCWSTR, MSIDATABASE ** ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_DatabaseOpenViewW(MSIDATABASE *, LPCWSTR, MSIQUERY ** ) DECLSPEC_HIDDEN;
|
2022-03-13 00:35:24 +00:00
|
|
|
extern UINT WINAPIV MSI_OpenQuery( MSIDATABASE *, MSIQUERY **, LPCWSTR, ... ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
typedef UINT (*record_func)( MSIRECORD *, LPVOID );
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSI_IterateRecords( MSIQUERY *, LPDWORD, record_func, LPVOID ) DECLSPEC_HIDDEN;
|
2022-03-13 00:35:24 +00:00
|
|
|
extern MSIRECORD * WINAPIV MSI_QueryGetRecord( MSIDATABASE *db, LPCWSTR query, ... ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSI_DatabaseGetPrimaryKeys( MSIDATABASE *, LPCWSTR, MSIRECORD ** ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* view internals */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSI_ViewExecute( MSIQUERY*, MSIRECORD * ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_ViewFetch( MSIQUERY*, MSIRECORD ** ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_ViewClose( MSIQUERY* ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_ViewGetColumnInfo(MSIQUERY *, MSICOLINFO, MSIRECORD **) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_ViewModify( MSIQUERY *, MSIMODIFY, MSIRECORD * ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT VIEW_find_column( MSIVIEW *, LPCWSTR, LPCWSTR, UINT * ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_view_get_row(MSIDATABASE *, MSIVIEW *, UINT, MSIRECORD **) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
2006-08-01 23:12:11 +00:00
|
|
|
/* install internals */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSI_SetInstallLevel( MSIPACKAGE *package, int iInstallLevel ) DECLSPEC_HIDDEN;
|
2006-08-01 23:12:11 +00:00
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
/* package internals */
|
2022-03-12 15:57:00 +00:00
|
|
|
#define WINE_OPENPACKAGEFLAGS_RECACHE 0x80000000
|
2022-03-12 14:11:49 +00:00
|
|
|
extern MSIPACKAGE *MSI_CreatePackage( MSIDATABASE * ) DECLSPEC_HIDDEN;
|
2022-03-12 15:57:00 +00:00
|
|
|
extern UINT MSI_OpenPackageW( LPCWSTR szPackage, DWORD dwOptions, MSIPACKAGE **pPackage ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSI_SetTargetPathW( MSIPACKAGE *, LPCWSTR, LPCWSTR ) DECLSPEC_HIDDEN;
|
2017-10-08 08:14:40 +00:00
|
|
|
extern INT MSI_ProcessMessageVerbatim( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern INT MSI_ProcessMessage( MSIPACKAGE *, INSTALLMESSAGE, MSIRECORD * ) DECLSPEC_HIDDEN;
|
|
|
|
extern MSICONDITION MSI_EvaluateConditionW( MSIPACKAGE *, LPCWSTR ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_GetComponentStateW( MSIPACKAGE *, LPCWSTR, INSTALLSTATE *, INSTALLSTATE * ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_GetFeatureStateW( MSIPACKAGE *, LPCWSTR, INSTALLSTATE *, INSTALLSTATE * ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_SetFeatureStateW(MSIPACKAGE*, LPCWSTR, INSTALLSTATE ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_download_file( LPCWSTR szUrl, LPWSTR filename ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_package_add_info(MSIPACKAGE *, DWORD, DWORD, LPCWSTR, LPWSTR) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_package_add_media_disk(MSIPACKAGE *, DWORD, DWORD, DWORD, LPWSTR, LPWSTR) DECLSPEC_HIDDEN;
|
2015-03-09 20:28:19 +00:00
|
|
|
extern UINT msi_clone_properties(MSIDATABASE *) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT msi_set_context(MSIPACKAGE *) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_adjust_privilege_properties(MSIPACKAGE *) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSI_GetFeatureCost(MSIPACKAGE *, MSIFEATURE *, MSICOSTTREE, INSTALLSTATE, LPINT) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* for deformating */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSI_FormatRecordW( MSIPACKAGE *, MSIRECORD *, LPWSTR, LPDWORD ) DECLSPEC_HIDDEN;
|
2006-10-22 20:23:59 +00:00
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
/* registry data encoding/decoding functions */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern BOOL unsquash_guid(LPCWSTR in, LPWSTR out) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL squash_guid(LPCWSTR in, LPWSTR out) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL encode_base85_guid(GUID *,LPWSTR) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL decode_base85_guid(LPCWSTR,GUID*) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_OpenUninstallKey(const WCHAR *, enum platform, HKEY *, BOOL) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_DeleteUninstallKey(const WCHAR *, enum platform) DECLSPEC_HIDDEN;
|
2009-05-20 12:59:23 +00:00
|
|
|
extern UINT MSIREG_OpenProductKey(LPCWSTR szProduct, LPCWSTR szUserSid,
|
2012-01-21 17:19:12 +00:00
|
|
|
MSIINSTALLCONTEXT context, HKEY* key, BOOL create) DECLSPEC_HIDDEN;
|
2013-04-03 21:58:03 +00:00
|
|
|
extern UINT MSIREG_OpenFeaturesKey(LPCWSTR szProduct, LPCWSTR szUserSid, MSIINSTALLCONTEXT context,
|
2012-01-21 17:19:12 +00:00
|
|
|
HKEY *key, BOOL create) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_OpenUserPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create) DECLSPEC_HIDDEN;
|
2013-04-03 21:58:03 +00:00
|
|
|
UINT MSIREG_OpenUserDataFeaturesKey(LPCWSTR szProduct, LPCWSTR szUserSid, MSIINSTALLCONTEXT context,
|
2012-01-21 17:19:12 +00:00
|
|
|
HKEY *key, BOOL create) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_OpenUserComponentsKey(LPCWSTR szComponent, HKEY* key, BOOL create) DECLSPEC_HIDDEN;
|
2008-12-27 15:10:14 +00:00
|
|
|
extern UINT MSIREG_OpenUserDataComponentKey(LPCWSTR szComponent, LPCWSTR szUserSid,
|
2012-01-21 17:19:12 +00:00
|
|
|
HKEY *key, BOOL create) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_OpenPatchesKey(LPCWSTR szPatch, HKEY* key, BOOL create) DECLSPEC_HIDDEN;
|
2008-12-27 15:10:14 +00:00
|
|
|
extern UINT MSIREG_OpenUserDataProductKey(LPCWSTR szProduct, MSIINSTALLCONTEXT dwContext,
|
2012-01-21 17:19:12 +00:00
|
|
|
LPCWSTR szUserSid, HKEY *key, BOOL create) DECLSPEC_HIDDEN;
|
2008-12-27 15:10:14 +00:00
|
|
|
extern UINT MSIREG_OpenUserDataPatchKey(LPCWSTR szPatch, MSIINSTALLCONTEXT dwContext,
|
2012-01-21 17:19:12 +00:00
|
|
|
HKEY *key, BOOL create) DECLSPEC_HIDDEN;
|
2010-05-29 08:55:43 +00:00
|
|
|
extern UINT MSIREG_OpenUserDataProductPatchesKey(LPCWSTR product, MSIINSTALLCONTEXT context,
|
2012-01-21 17:19:12 +00:00
|
|
|
HKEY *key, BOOL create) DECLSPEC_HIDDEN;
|
2008-12-27 15:10:14 +00:00
|
|
|
extern UINT MSIREG_OpenInstallProps(LPCWSTR szProduct, MSIINSTALLCONTEXT dwContext,
|
2012-01-21 17:19:12 +00:00
|
|
|
LPCWSTR szUserSid, HKEY *key, BOOL create) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_OpenUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szProduct, HKEY* key, BOOL create) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_DeleteProductKey(LPCWSTR szProduct) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_DeleteUserProductKey(LPCWSTR szProduct) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_DeleteUserDataPatchKey(LPCWSTR patch, MSIINSTALLCONTEXT context) DECLSPEC_HIDDEN;
|
2016-11-22 12:25:27 +00:00
|
|
|
extern UINT MSIREG_DeleteUserDataProductKey(LPCWSTR, MSIINSTALLCONTEXT) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSIREG_DeleteUserFeaturesKey(LPCWSTR szProduct) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_DeleteUserDataComponentKey(LPCWSTR szComponent, LPCWSTR szUserSid) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_DeleteUserUpgradeCodesKey(LPCWSTR szUpgradeCode) DECLSPEC_HIDDEN;
|
2016-11-22 12:25:27 +00:00
|
|
|
extern UINT MSIREG_DeleteUpgradeCodesKey(const WCHAR *) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT MSIREG_DeleteClassesUpgradeCodesKey(LPCWSTR szUpgradeCode) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_OpenClassesUpgradeCodesKey(LPCWSTR szUpgradeCode, HKEY* key, BOOL create) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_DeleteLocalClassesProductKey(LPCWSTR szProductCode) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT MSIREG_DeleteLocalClassesFeaturesKey(LPCWSTR szProductCode) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_locate_product(LPCWSTR szProduct, MSIINSTALLCONTEXT *context) DECLSPEC_HIDDEN;
|
|
|
|
extern LPWSTR msi_reg_get_val_str( HKEY hkey, LPCWSTR name ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_reg_get_val_dword( HKEY hkey, LPCWSTR name, DWORD *val) DECLSPEC_HIDDEN;
|
|
|
|
|
|
|
|
extern DWORD msi_version_str_to_dword(LPCWSTR p) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_parse_version_string(LPCWSTR, PDWORD, PDWORD) DECLSPEC_HIDDEN;
|
|
|
|
extern int msi_compare_file_versions(VS_FIXEDFILEINFO *, const WCHAR *) DECLSPEC_HIDDEN;
|
|
|
|
extern int msi_compare_font_versions(const WCHAR *, const WCHAR *) DECLSPEC_HIDDEN;
|
|
|
|
|
|
|
|
extern LONG msi_reg_set_val_str( HKEY hkey, LPCWSTR name, LPCWSTR value ) DECLSPEC_HIDDEN;
|
|
|
|
extern LONG msi_reg_set_val_multi_str( HKEY hkey, LPCWSTR name, LPCWSTR value ) DECLSPEC_HIDDEN;
|
|
|
|
extern LONG msi_reg_set_val_dword( HKEY hkey, LPCWSTR name, DWORD val ) DECLSPEC_HIDDEN;
|
|
|
|
extern LONG msi_reg_set_subkey_val( HKEY hkey, LPCWSTR path, LPCWSTR name, LPCWSTR val ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* msi dialog interface */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void msi_dialog_check_messages( HANDLE ) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_dialog_destroy( msi_dialog* ) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_dialog_unregister_class( void ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* summary information */
|
2015-07-19 23:04:25 +00:00
|
|
|
extern UINT msi_get_suminfo( IStorage *stg, UINT uiUpdateCount, MSISUMMARYINFO **si ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_get_db_suminfo( MSIDATABASE *db, UINT uiUpdateCount, MSISUMMARYINFO **si ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern LPWSTR msi_suminfo_dup_string( MSISUMMARYINFO *si, UINT uiProperty ) DECLSPEC_HIDDEN;
|
|
|
|
extern INT msi_suminfo_get_int32( MSISUMMARYINFO *si, UINT uiProperty ) DECLSPEC_HIDDEN;
|
|
|
|
extern LPWSTR msi_get_suminfo_product( IStorage *stg ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_add_suminfo( MSIDATABASE *db, LPWSTR **records, int num_records, int num_columns ) DECLSPEC_HIDDEN;
|
2018-03-04 23:30:58 +00:00
|
|
|
extern UINT msi_export_suminfo( MSIDATABASE *db, HANDLE handle ) DECLSPEC_HIDDEN;
|
2015-07-19 23:04:25 +00:00
|
|
|
extern UINT msi_load_suminfo_properties( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
|
|
|
/* undocumented functions */
|
|
|
|
UINT WINAPI MsiCreateAndVerifyInstallerDirectory( DWORD );
|
2008-01-16 10:11:22 +00:00
|
|
|
UINT WINAPI MsiDecomposeDescriptorW( LPCWSTR, LPWSTR, LPWSTR, LPWSTR, LPDWORD );
|
|
|
|
UINT WINAPI MsiDecomposeDescriptorA( LPCSTR, LPSTR, LPSTR, LPSTR, LPDWORD );
|
2006-02-17 00:04:10 +00:00
|
|
|
LANGID WINAPI MsiLoadStringW( MSIHANDLE, UINT, LPWSTR, int, LANGID );
|
|
|
|
LANGID WINAPI MsiLoadStringA( MSIHANDLE, UINT, LPSTR, int, LANGID );
|
|
|
|
|
|
|
|
/* UI globals */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern INSTALLUILEVEL gUILevel DECLSPEC_HIDDEN;
|
|
|
|
extern HWND gUIhwnd DECLSPEC_HIDDEN;
|
|
|
|
extern INSTALLUI_HANDLERA gUIHandlerA DECLSPEC_HIDDEN;
|
|
|
|
extern INSTALLUI_HANDLERW gUIHandlerW DECLSPEC_HIDDEN;
|
|
|
|
extern INSTALLUI_HANDLER_RECORD gUIHandlerRecord DECLSPEC_HIDDEN;
|
|
|
|
extern DWORD gUIFilter DECLSPEC_HIDDEN;
|
2017-10-08 08:14:40 +00:00
|
|
|
extern DWORD gUIFilterRecord DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern LPVOID gUIContext DECLSPEC_HIDDEN;
|
2017-10-08 08:14:40 +00:00
|
|
|
extern LPVOID gUIContextRecord DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern WCHAR *gszLogFile DECLSPEC_HIDDEN;
|
|
|
|
extern HINSTANCE msi_hInstance DECLSPEC_HIDDEN;
|
2006-02-17 00:04:10 +00:00
|
|
|
|
2006-10-22 20:23:59 +00:00
|
|
|
/* action related functions */
|
2022-03-12 15:34:06 +00:00
|
|
|
extern UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void ACTION_FinishCustomActions( const MSIPACKAGE* package) DECLSPEC_HIDDEN;
|
2022-03-12 15:34:06 +00:00
|
|
|
extern UINT ACTION_CustomAction(MSIPACKAGE *package, const WCHAR *action) DECLSPEC_HIDDEN;
|
2022-03-12 22:22:09 +00:00
|
|
|
extern void custom_stop_server(HANDLE process, HANDLE pipe) DECLSPEC_HIDDEN;
|
2006-10-22 20:23:59 +00:00
|
|
|
|
|
|
|
/* actions in other modules */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT ACTION_AppSearch(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_CCPSearch(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_FindRelatedProducts(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_InstallFiles(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_PatchFiles( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_RemoveFiles(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_MoveFiles(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_DuplicateFiles(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_RemoveDuplicateFiles(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_RegisterClassInfo(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_RegisterProgIdInfo(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_RegisterExtensionInfo(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_RegisterMIMEInfo(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_RegisterFonts(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_UnregisterClassInfo(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_UnregisterExtensionInfo(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_UnregisterFonts(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_UnregisterMIMEInfo(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_UnregisterProgIdInfo(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_MsiPublishAssemblies(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT ACTION_MsiUnpublishAssemblies(MSIPACKAGE *package) DECLSPEC_HIDDEN;
|
2006-10-22 20:23:59 +00:00
|
|
|
|
|
|
|
/* Helpers */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern DWORD deformat_string(MSIPACKAGE *package, LPCWSTR ptr, WCHAR** data ) DECLSPEC_HIDDEN;
|
|
|
|
extern WCHAR *msi_dup_record_field(MSIRECORD *row, INT index) DECLSPEC_HIDDEN;
|
|
|
|
extern LPWSTR msi_dup_property( MSIDATABASE *db, LPCWSTR prop ) DECLSPEC_HIDDEN;
|
2012-12-09 19:43:59 +00:00
|
|
|
extern UINT msi_set_property( MSIDATABASE *, const WCHAR *, const WCHAR *, int ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT msi_get_property( MSIDATABASE *, LPCWSTR, LPWSTR, LPDWORD ) DECLSPEC_HIDDEN;
|
|
|
|
extern int msi_get_property_int( MSIDATABASE *package, LPCWSTR prop, int def ) DECLSPEC_HIDDEN;
|
|
|
|
extern WCHAR *msi_resolve_source_folder(MSIPACKAGE *package, const WCHAR *name, MSIFOLDER **folder) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_resolve_target_folder(MSIPACKAGE *package, const WCHAR *name, BOOL load_prop) DECLSPEC_HIDDEN;
|
2012-05-14 21:41:31 +00:00
|
|
|
extern WCHAR *msi_normalize_path(const WCHAR *) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern WCHAR *msi_resolve_file_source(MSIPACKAGE *package, MSIFILE *file) DECLSPEC_HIDDEN;
|
|
|
|
extern const WCHAR *msi_get_target_folder(MSIPACKAGE *package, const WCHAR *name) DECLSPEC_HIDDEN;
|
2022-03-12 23:08:16 +00:00
|
|
|
extern void msi_reset_source_folders( MSIPACKAGE *package ) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern MSICOMPONENT *msi_get_loaded_component(MSIPACKAGE *package, const WCHAR *Component) DECLSPEC_HIDDEN;
|
|
|
|
extern MSIFEATURE *msi_get_loaded_feature(MSIPACKAGE *package, const WCHAR *Feature) DECLSPEC_HIDDEN;
|
|
|
|
extern MSIFILE *msi_get_loaded_file(MSIPACKAGE *package, const WCHAR *file) DECLSPEC_HIDDEN;
|
|
|
|
extern MSIFOLDER *msi_get_loaded_folder(MSIPACKAGE *package, const WCHAR *dir) DECLSPEC_HIDDEN;
|
2015-07-19 23:04:25 +00:00
|
|
|
extern WCHAR *msi_create_temp_file(MSIDATABASE *db) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void msi_free_action_script(MSIPACKAGE *package, UINT script) DECLSPEC_HIDDEN;
|
|
|
|
extern WCHAR *msi_build_icon_path(MSIPACKAGE *, const WCHAR *) DECLSPEC_HIDDEN;
|
2022-03-13 22:58:56 +00:00
|
|
|
extern WCHAR * WINAPIV msi_build_directory_name(DWORD , ...) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern void msi_reduce_to_long_filename(WCHAR *) DECLSPEC_HIDDEN;
|
|
|
|
extern WCHAR *msi_create_component_advertise_string(MSIPACKAGE *, MSICOMPONENT *, const WCHAR *) DECLSPEC_HIDDEN;
|
|
|
|
extern void ACTION_UpdateComponentStates(MSIPACKAGE *package, MSIFEATURE *feature) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_register_unique_action(MSIPACKAGE *, const WCHAR *) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_action_is_unique(const MSIPACKAGE *, const WCHAR *) DECLSPEC_HIDDEN;
|
2008-04-04 13:43:40 +00:00
|
|
|
extern UINT msi_set_last_used_source(LPCWSTR product, LPCWSTR usersid,
|
2012-01-21 17:19:12 +00:00
|
|
|
MSIINSTALLCONTEXT context, DWORD options, LPCWSTR value) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_create_empty_local_file(LPWSTR path, LPCWSTR suffix) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_set_sourcedir_props(MSIPACKAGE *package, BOOL replace) DECLSPEC_HIDDEN;
|
|
|
|
extern MSIASSEMBLY *msi_load_assembly(MSIPACKAGE *, MSICOMPONENT *) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_install_assembly(MSIPACKAGE *, MSICOMPONENT *) DECLSPEC_HIDDEN;
|
2012-05-14 21:41:31 +00:00
|
|
|
extern UINT msi_uninstall_assembly(MSIPACKAGE *, MSICOMPONENT *) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern BOOL msi_init_assembly_caches(MSIPACKAGE *) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_destroy_assembly_caches(MSIPACKAGE *) DECLSPEC_HIDDEN;
|
2015-07-19 23:04:25 +00:00
|
|
|
extern BOOL msi_is_global_assembly(MSICOMPONENT *) DECLSPEC_HIDDEN;
|
|
|
|
extern IAssemblyEnum *msi_create_assembly_enum(MSIPACKAGE *, const WCHAR *) DECLSPEC_HIDDEN;
|
|
|
|
extern WCHAR *msi_get_assembly_path(MSIPACKAGE *, const WCHAR *) DECLSPEC_HIDDEN;
|
2012-01-21 17:19:12 +00:00
|
|
|
extern WCHAR **msi_split_string(const WCHAR *, WCHAR) DECLSPEC_HIDDEN;
|
2013-04-03 21:58:03 +00:00
|
|
|
extern UINT msi_set_original_database_property(MSIDATABASE *, const WCHAR *) DECLSPEC_HIDDEN;
|
2017-10-08 08:14:40 +00:00
|
|
|
extern WCHAR *msi_get_error_message(MSIDATABASE *, int) DECLSPEC_HIDDEN;
|
2022-03-12 14:12:15 +00:00
|
|
|
extern UINT msi_strncpyWtoA(const WCHAR *str, int len, char *buf, DWORD *sz, BOOL remote) DECLSPEC_HIDDEN;
|
2022-03-12 14:12:15 +00:00
|
|
|
extern UINT msi_strncpyW(const WCHAR *str, int len, WCHAR *buf, DWORD *sz) DECLSPEC_HIDDEN;
|
2022-03-12 15:34:11 +00:00
|
|
|
extern WCHAR *msi_get_package_code(MSIDATABASE *db) DECLSPEC_HIDDEN;
|
2008-12-27 15:10:14 +00:00
|
|
|
|
2022-03-13 00:17:50 +00:00
|
|
|
/* wrappers for filesystem functions */
|
|
|
|
static inline void msi_disable_fs_redirection( MSIPACKAGE *package )
|
|
|
|
{
|
|
|
|
if (is_wow64 && package->platform == PLATFORM_X64) Wow64DisableWow64FsRedirection( &package->cookie );
|
|
|
|
}
|
|
|
|
static inline void msi_revert_fs_redirection( MSIPACKAGE *package )
|
|
|
|
{
|
|
|
|
if (is_wow64 && package->platform == PLATFORM_X64) Wow64RevertWow64FsRedirection( package->cookie );
|
|
|
|
}
|
|
|
|
extern HANDLE msi_create_file( MSIPACKAGE *, const WCHAR *, DWORD, DWORD, DWORD, DWORD ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_delete_file( MSIPACKAGE *, const WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_remove_directory( MSIPACKAGE *, const WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
extern DWORD msi_get_file_attributes( MSIPACKAGE *, const WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_set_file_attributes( MSIPACKAGE *, const WCHAR *, DWORD ) DECLSPEC_HIDDEN;
|
|
|
|
extern HANDLE msi_find_first_file( MSIPACKAGE *, const WCHAR *, WIN32_FIND_DATAW * ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_find_next_file( MSIPACKAGE *, HANDLE, WIN32_FIND_DATAW * ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_move_file( MSIPACKAGE *, const WCHAR *, const WCHAR *, DWORD ) DECLSPEC_HIDDEN;
|
|
|
|
extern DWORD msi_get_file_version_info( MSIPACKAGE *, const WCHAR *, DWORD, BYTE * ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_create_full_path( MSIPACKAGE *, const WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
extern DWORD msi_get_disk_file_size( MSIPACKAGE *, const WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
extern VS_FIXEDFILEINFO *msi_get_disk_file_version( MSIPACKAGE *, const WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_get_filehash( MSIPACKAGE *, const WCHAR *, MSIFILEHASHINFO * ) DECLSPEC_HIDDEN;
|
|
|
|
extern WCHAR *msi_get_font_file_version( MSIPACKAGE *, const WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
|
2008-12-27 15:10:14 +00:00
|
|
|
/* media */
|
|
|
|
|
|
|
|
typedef BOOL (*PMSICABEXTRACTCB)(MSIPACKAGE *, LPCWSTR, DWORD, LPWSTR *, DWORD *, PVOID);
|
|
|
|
|
|
|
|
#define MSICABEXTRACT_BEGINEXTRACT 0x01
|
|
|
|
#define MSICABEXTRACT_FILEEXTRACTED 0x02
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
MSIPACKAGE* package;
|
|
|
|
MSIMEDIAINFO *mi;
|
|
|
|
PMSICABEXTRACTCB cb;
|
|
|
|
LPWSTR curfile;
|
|
|
|
PVOID user;
|
|
|
|
} MSICABDATA;
|
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
extern UINT ready_media(MSIPACKAGE *package, BOOL compressed, MSIMEDIAINFO *mi) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_load_media_info(MSIPACKAGE *package, UINT Sequence, MSIMEDIAINFO *mi) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_free_media_info(MSIMEDIAINFO *mi) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL msi_cabextract(MSIPACKAGE* package, MSIMEDIAINFO *mi, LPVOID data) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT msi_add_cabinet_stream(MSIPACKAGE *, UINT, IStorage *, const WCHAR *) DECLSPEC_HIDDEN;
|
2006-10-22 20:23:59 +00:00
|
|
|
|
|
|
|
/* control event stuff */
|
2013-09-22 16:30:18 +00:00
|
|
|
extern void msi_event_fire(MSIPACKAGE *, const WCHAR *, MSIRECORD *) DECLSPEC_HIDDEN;
|
|
|
|
extern void msi_event_cleanup_all_subscriptions( MSIPACKAGE * ) DECLSPEC_HIDDEN;
|
2006-10-22 20:23:59 +00:00
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
/* OLE automation */
|
2012-12-09 19:43:59 +00:00
|
|
|
typedef enum tid_t {
|
|
|
|
Database_tid,
|
|
|
|
Installer_tid,
|
|
|
|
Record_tid,
|
|
|
|
Session_tid,
|
|
|
|
StringList_tid,
|
|
|
|
SummaryInfo_tid,
|
|
|
|
View_tid,
|
|
|
|
LAST_tid
|
|
|
|
} tid_t;
|
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
extern HRESULT create_msiserver(IUnknown *pOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
|
|
|
extern HRESULT create_session(MSIHANDLE msiHandle, IDispatch *pInstaller, IDispatch **pDispatch) DECLSPEC_HIDDEN;
|
2012-12-09 19:43:59 +00:00
|
|
|
extern HRESULT get_typeinfo(tid_t tid, ITypeInfo **ti) DECLSPEC_HIDDEN;
|
|
|
|
extern void release_typelib(void) DECLSPEC_HIDDEN;
|
2008-01-16 10:11:22 +00:00
|
|
|
|
|
|
|
/* Scripting */
|
2012-01-21 17:19:12 +00:00
|
|
|
extern DWORD call_script(MSIHANDLE hPackage, INT type, LPCWSTR script, LPCWSTR function, LPCWSTR action) DECLSPEC_HIDDEN;
|
2008-01-16 10:11:22 +00:00
|
|
|
|
2012-01-21 17:19:12 +00:00
|
|
|
/* User interface messages from the actions */
|
|
|
|
extern void msi_ui_progress(MSIPACKAGE *, int, int, int, int) DECLSPEC_HIDDEN;
|
2006-10-22 20:23:59 +00:00
|
|
|
|
2006-02-17 00:04:10 +00:00
|
|
|
/* memory allocation macro functions */
|
2008-12-27 15:10:14 +00:00
|
|
|
static void *msi_alloc( size_t len ) __WINE_ALLOC_SIZE(1);
|
2006-02-17 00:04:10 +00:00
|
|
|
static inline void *msi_alloc( size_t len )
|
|
|
|
{
|
2022-03-14 19:05:29 +00:00
|
|
|
return malloc( len );
|
2006-02-17 00:04:10 +00:00
|
|
|
}
|
|
|
|
|
2008-12-27 15:10:14 +00:00
|
|
|
static void *msi_alloc_zero( size_t len ) __WINE_ALLOC_SIZE(1);
|
2006-02-17 00:04:10 +00:00
|
|
|
static inline void *msi_alloc_zero( size_t len )
|
|
|
|
{
|
2022-03-14 19:05:29 +00:00
|
|
|
return calloc( 1, len );
|
2006-02-17 00:04:10 +00:00
|
|
|
}
|
|
|
|
|
2008-12-27 15:10:14 +00:00
|
|
|
static void *msi_realloc( void *mem, size_t len ) __WINE_ALLOC_SIZE(2);
|
2006-02-17 00:04:10 +00:00
|
|
|
static inline void *msi_realloc( void *mem, size_t len )
|
|
|
|
{
|
2022-03-14 19:05:29 +00:00
|
|
|
return realloc( mem, len );
|
2006-02-17 00:04:10 +00:00
|
|
|
}
|
|
|
|
|
2022-03-14 19:05:29 +00:00
|
|
|
static inline void msi_free( void *mem )
|
2006-02-17 00:04:10 +00:00
|
|
|
{
|
2022-03-14 19:05:29 +00:00
|
|
|
free( mem );
|
2006-02-17 00:04:10 +00:00
|
|
|
}
|
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
static inline char *strdupWtoA( LPCWSTR str )
|
2006-02-17 00:04:10 +00:00
|
|
|
{
|
|
|
|
LPSTR ret = NULL;
|
|
|
|
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 );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
static inline LPWSTR strdupAtoW( LPCSTR str )
|
2006-02-17 00:04:10 +00:00
|
|
|
{
|
|
|
|
LPWSTR ret = NULL;
|
|
|
|
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 );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
static inline LPWSTR strdupW( LPCWSTR src )
|
2006-02-17 00:04:10 +00:00
|
|
|
{
|
|
|
|
LPWSTR dest;
|
|
|
|
if (!src) return NULL;
|
|
|
|
dest = msi_alloc( (lstrlenW(src)+1)*sizeof(WCHAR) );
|
|
|
|
if (dest)
|
|
|
|
lstrcpyW(dest, src);
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __WINE_MSI_PRIVATE__ */
|