JwaMsiQuery.pas
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:124k
源码类别:

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Windows Installer API interface Unit for Object Pascal                       }
  4. {                                                                       }
  5. { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft          }
  6. { Corporation. All Rights Reserved.                                            }
  7. {                 }
  8. { The original file is: msiquery.h, released June 2000. The original Pascal    }
  9. { code is: MsiQuery.pas, released June 2001. The initial developer of the      }
  10. { Pascal code is Marcel van Brakel (brakelm@chello.nl).                        }
  11. {                                                                              }
  12. { Portions created by Marcel van Brakel are Copyright (C) 1999-2001            }
  13. { Marcel van Brakel. All Rights Reserved.                                      }
  14. {                 }
  15. { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI)        }
  16. {                }
  17. { You may retrieve the latest version of this file at the Project JEDI home    }
  18. { page, located at http://delphi-jedi.org or my personal homepage located at   }
  19. { http://members.chello.nl/m.vanbrakel2                                        }
  20. {                }
  21. { The contents of this file are used with permission, subject to the Mozilla   }
  22. { Public License Version 1.1 (the "License"); you may not use this file except }
  23. { in compliance with the License. You may obtain a copy of the License at      }
  24. { http://www.mozilla.org/MPL/MPL-1.1.html                                      }
  25. {                                                                              }
  26. { Software distributed under the License is distributed on an "AS IS" basis,   }
  27. { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
  28. { the specific language governing rights and limitations under the License.    }
  29. {                                                                              }
  30. { Alternatively, the contents of this file may be used under the terms of the  }
  31. { GNU Lesser General Public License (the  "LGPL License"), in which case the   }
  32. { provisions of the LGPL License are applicable instead of those above.        }
  33. { If you wish to allow use of your version of this file only under the terms   }
  34. { of the LGPL License and not to allow others to use your version of this file }
  35. { under the MPL, indicate your decision by deleting  the provisions above and  }
  36. { replace  them with the notice and other provisions required by the LGPL      }
  37. { License.  If you do not delete the provisions above, a recipient may use     }
  38. { your version of this file under either the MPL or the LGPL License.          }
  39. {                 }
  40. { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
  41. {                 }
  42. {******************************************************************************}
  43. unit JwaMsiQuery;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "msiquery.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. uses
  51.   JwaMsi, JwaWinBase, JwaWinType;
  52. (*****************************************************************************
  53. *                                                                             *
  54. * MsiQuery.h - Interface to running installer for custom actions and tools    *
  55. *                                                                             *
  56. * Version 1.0 - 1.2                                                           *
  57. *                                                                             *
  58. * NOTES:  All buffers sizes are TCHAR count, null included only on input      *
  59. *         Return argument pointers may be null if not interested in value     *
  60. *         Returned handles of all types must be closed: MsiCloseHandle(h)     *
  61. *         Functions with UINT return type return a system error code          *
  62. *         Designated functions will set or clear the last error record,       *
  63. *         which is then accessible with MsiGetLastErrorRecord. However,       *
  64. *         the following argument errors do not register an error record:      *
  65. *         ERROR_INVALID_HANDLE, ERROR_INVALID_PARAMETER, ERROR_MORE_DATA.     *
  66. *                                                                             *
  67. * Copyright (c) 1999-2000, Microsoft Corp.      All rights reserved.          *
  68. *                                                                             *
  69. *****************************************************************************)
  70. const
  71.   MSI_NULL_INTEGER = DWORD($80000000);  // integer value reserved for null
  72.   {$EXTERNALSYM MSI_NULL_INTEGER}
  73. // MsiOpenDatabase persist predefine values, otherwise output database path is used
  74.   MSIDBOPEN_READONLY     = LPCTSTR(0);  // database open read-only, no persistent changes
  75.   {$EXTERNALSYM MSIDBOPEN_READONLY}
  76.   MSIDBOPEN_TRANSACT     = LPCTSTR(1);  // database read/write in transaction mode
  77.   {$EXTERNALSYM MSIDBOPEN_TRANSACT}
  78.   MSIDBOPEN_DIRECT       = LPCTSTR(2);  // database direct read/write without transaction
  79.   {$EXTERNALSYM MSIDBOPEN_DIRECT}
  80.   MSIDBOPEN_CREATE       = LPCTSTR(3);  // create new database, transact mode read/write
  81.   {$EXTERNALSYM MSIDBOPEN_CREATE}
  82.   MSIDBOPEN_CREATEDIRECT = LPCTSTR(4);  // create new database, direct mode read/write
  83.   {$EXTERNALSYM MSIDBOPEN_CREATEDIRECT}
  84.   {$IFDEF UNICODE}
  85.   MSIDBOPEN_PATCHFILE    = 32 div SizeOf(WideChar); // add flag to indicate patch file
  86.   {$ELSE}
  87.   MSIDBOPEN_PATCHFILE    = 32 div SizeOf(AnsiChar); // add flag to indicate patch file  
  88.   {$ENDIF}
  89.   MSIDBSTATE_ERROR    = DWORD(-1);  // invalid database handle
  90.   {$EXTERNALSYM MSIDBSTATE_ERROR}
  91.   MSIDBSTATE_READ     =  0;  // database open read-only, no persistent changes
  92.   {$EXTERNALSYM MSIDBSTATE_READ}
  93.   MSIDBSTATE_WRITE    =  1;  // database readable and updatable
  94.   {$EXTERNALSYM MSIDBSTATE_WRITE}
  95. type
  96.   MSIDBSTATE = DWORD;
  97.   {$EXTERNALSYM MSIDBSTATE}
  98.   TMsiDbState = MSIDBSTATE;
  99. const
  100.   MSIMODIFY_SEEK             = DWORD(-1);  // reposition to current record primary key
  101.   {$EXTERNALSYM MSIMODIFY_SEEK}
  102.   MSIMODIFY_REFRESH          = 0;  // refetch current record data
  103.   {$EXTERNALSYM MSIMODIFY_REFRESH}
  104.   MSIMODIFY_INSERT           = 1;  // insert new record, fails if matching key exists
  105.   {$EXTERNALSYM MSIMODIFY_INSERT}
  106.   MSIMODIFY_UPDATE           = 2;  // update existing non-key data of fetched record
  107.   {$EXTERNALSYM MSIMODIFY_UPDATE}
  108.   MSIMODIFY_ASSIGN           = 3;  // insert record, replacing any existing record
  109.   {$EXTERNALSYM MSIMODIFY_ASSIGN}
  110.   MSIMODIFY_REPLACE          = 4;  // update record, delete old if primary key edit
  111.   {$EXTERNALSYM MSIMODIFY_REPLACE}
  112.   MSIMODIFY_MERGE            = 5;  // fails if record with duplicate key not identical
  113.   {$EXTERNALSYM MSIMODIFY_MERGE}
  114.   MSIMODIFY_DELETE           = 6;  // remove row referenced by this record from table
  115.   {$EXTERNALSYM MSIMODIFY_DELETE}
  116.   MSIMODIFY_INSERT_TEMPORARY = 7;  // insert a temporary record
  117.   {$EXTERNALSYM MSIMODIFY_INSERT_TEMPORARY}
  118.   MSIMODIFY_VALIDATE         = 8;  // validate a fetched record
  119.   {$EXTERNALSYM MSIMODIFY_VALIDATE}
  120.   MSIMODIFY_VALIDATE_NEW     = 9;  // validate a new record
  121.   {$EXTERNALSYM MSIMODIFY_VALIDATE_NEW}
  122.   MSIMODIFY_VALIDATE_FIELD   = 10; // validate field(s) of an incomplete record
  123.   {$EXTERNALSYM MSIMODIFY_VALIDATE_FIELD}
  124.   MSIMODIFY_VALIDATE_DELETE  = 11; // validate before deleting record
  125.   {$EXTERNALSYM MSIMODIFY_VALIDATE_DELETE}
  126. type
  127.   MSIMODIFY = DWORD;
  128.   {$EXTERNALSYM MSIMODIFY}
  129.   TMsiModify = MSIMODIFY;
  130. const
  131.   MSICOLINFO_NAMES = 0;  // return column names
  132.   {$EXTERNALSYM MSICOLINFO_NAMES}
  133.   MSICOLINFO_TYPES = 1;  // return column definitions, datatype code followed by width
  134.   {$EXTERNALSYM MSICOLINFO_TYPES}
  135. type
  136.   MSICOLINFO = DWORD;
  137.   {$EXTERNALSYM MSICOLINFO}
  138.   TMsiColInfo = MSICOLINFO;
  139. const
  140.   MSICONDITION_FALSE = 0;  // expression evaluates to False
  141.   {$EXTERNALSYM MSICONDITION_FALSE}
  142.   MSICONDITION_TRUE  = 1;  // expression evaluates to True
  143.   {$EXTERNALSYM MSICONDITION_TRUE}
  144.   MSICONDITION_NONE  = 2;  // no expression present
  145.   {$EXTERNALSYM MSICONDITION_NONE}
  146.   MSICONDITION_ERROR = 3;  // syntax error in expression
  147.   {$EXTERNALSYM MSICONDITION_ERROR}
  148. type
  149.   MSICONDITION = DWORD;
  150.   {$EXTERNALSYM MSICONDITION}
  151.   TMsiCondition = MSICONDITION;
  152. const
  153.   MSICOSTTREE_SELFONLY = 0;
  154.   {$EXTERNALSYM MSICOSTTREE_SELFONLY}
  155.   MSICOSTTREE_CHILDREN = 1;
  156.   {$EXTERNALSYM MSICOSTTREE_CHILDREN}
  157.   MSICOSTTREE_PARENTS  = 2;
  158.   {$EXTERNALSYM MSICOSTTREE_PARENTS}
  159.   MSICOSTTREE_RESERVED = 3; // Reserved for future use
  160.   {$EXTERNALSYM MSICOSTTREE_RESERVED}
  161. type
  162.   MSICOSTTREE = DWORD;
  163.   {$EXTERNALSYM MSICOSTTREE}
  164.   TMsiCostTree = MSICOSTTREE;
  165. const
  166.   MSIDBERROR_INVALIDARG        = DWORD(-3); //  invalid argument
  167.   {$EXTERNALSYM MSIDBERROR_INVALIDARG}
  168.   MSIDBERROR_MOREDATA          = DWORD(-2); //  buffer too small
  169.   {$EXTERNALSYM MSIDBERROR_MOREDATA}
  170.   MSIDBERROR_FUNCTIONERROR     = DWORD(-1); //  function error
  171.   {$EXTERNALSYM MSIDBERROR_FUNCTIONERROR}
  172.   MSIDBERROR_NOERROR           = 0;  //  no error
  173.   {$EXTERNALSYM MSIDBERROR_NOERROR}
  174.   MSIDBERROR_DUPLICATEKEY      = 1;  //  new record duplicates primary keys of existing record in table
  175.   {$EXTERNALSYM MSIDBERROR_DUPLICATEKEY}
  176.   MSIDBERROR_REQUIRED          = 2;  //  non-nullable column, no null values allowed
  177.   {$EXTERNALSYM MSIDBERROR_REQUIRED}
  178.   MSIDBERROR_BADLINK           = 3;  //  corresponding record in foreign table not found
  179.   {$EXTERNALSYM MSIDBERROR_BADLINK}
  180.   MSIDBERROR_OVERFLOW          = 4;  //  data greater than maximum value allowed
  181.   {$EXTERNALSYM MSIDBERROR_OVERFLOW}
  182.   MSIDBERROR_UNDERFLOW         = 5;  //  data less than minimum value allowed
  183.   {$EXTERNALSYM MSIDBERROR_UNDERFLOW}
  184.   MSIDBERROR_NOTINSET          = 6;  //  data not a member of the values permitted in the set
  185.   {$EXTERNALSYM MSIDBERROR_NOTINSET}
  186.   MSIDBERROR_BADVERSION        = 7;  //  invalid version string
  187.   {$EXTERNALSYM MSIDBERROR_BADVERSION}
  188.   MSIDBERROR_BADCASE           = 8;  //  invalid case, must be all upper-case or all lower-case
  189.   {$EXTERNALSYM MSIDBERROR_BADCASE}
  190.   MSIDBERROR_BADGUID           = 9;  //  invalid GUID
  191.   {$EXTERNALSYM MSIDBERROR_BADGUID}
  192.   MSIDBERROR_BADWILDCARD       = 10; //  invalid wildcardfilename or use of wildcards
  193.   {$EXTERNALSYM MSIDBERROR_BADWILDCARD}
  194.   MSIDBERROR_BADIDENTIFIER     = 11; //  bad identifier
  195.   {$EXTERNALSYM MSIDBERROR_BADIDENTIFIER}
  196.   MSIDBERROR_BADLANGUAGE       = 12; //  bad language Id(s)
  197.   {$EXTERNALSYM MSIDBERROR_BADLANGUAGE}
  198.   MSIDBERROR_BADFILENAME       = 13; //  bad filename
  199.   {$EXTERNALSYM MSIDBERROR_BADFILENAME}
  200.   MSIDBERROR_BADPATH           = 14; //  bad path
  201.   {$EXTERNALSYM MSIDBERROR_BADPATH}
  202.   MSIDBERROR_BADCONDITION      = 15; //  bad conditional statement
  203.   {$EXTERNALSYM MSIDBERROR_BADCONDITION}
  204.   MSIDBERROR_BADFORMATTED      = 16; //  bad format string
  205.   {$EXTERNALSYM MSIDBERROR_BADFORMATTED}
  206.   MSIDBERROR_BADTEMPLATE       = 17; //  bad template string
  207.   {$EXTERNALSYM MSIDBERROR_BADTEMPLATE}
  208.   MSIDBERROR_BADDEFAULTDIR     = 18; //  bad string in DefaultDir column of Directory table
  209.   {$EXTERNALSYM MSIDBERROR_BADDEFAULTDIR}
  210.   MSIDBERROR_BADREGPATH        = 19; //  bad registry path string
  211.   {$EXTERNALSYM MSIDBERROR_BADREGPATH}
  212.   MSIDBERROR_BADCUSTOMSOURCE   = 20; //  bad string in CustomSource column of CustomAction table
  213.   {$EXTERNALSYM MSIDBERROR_BADCUSTOMSOURCE}
  214.   MSIDBERROR_BADPROPERTY       = 21; //  bad property string
  215.   {$EXTERNALSYM MSIDBERROR_BADPROPERTY}
  216.   MSIDBERROR_MISSINGDATA       = 22; //  _Validation table missing reference to column
  217.   {$EXTERNALSYM MSIDBERROR_MISSINGDATA}
  218.   MSIDBERROR_BADCATEGORY       = 23; //  Category column of _Validation table for column is invalid
  219.   {$EXTERNALSYM MSIDBERROR_BADCATEGORY}
  220.   MSIDBERROR_BADKEYTABLE       = 24; //  table in KeyTable column of _Validation table could not be found/loaded
  221.   {$EXTERNALSYM MSIDBERROR_BADKEYTABLE}
  222.   MSIDBERROR_BADMAXMINVALUES   = 25; //  value in MaxValue column of _Validation table is less than value in MinValue column
  223.   {$EXTERNALSYM MSIDBERROR_BADMAXMINVALUES}
  224.   MSIDBERROR_BADCABINET        = 26; //  bad cabinet name
  225.   {$EXTERNALSYM MSIDBERROR_BADCABINET}
  226.   MSIDBERROR_BADSHORTCUT       = 27; //  bad shortcut target
  227.   {$EXTERNALSYM MSIDBERROR_BADSHORTCUT}
  228.   MSIDBERROR_STRINGOVERFLOW    = 28; //  string overflow (greater than length allowed in column def)
  229.   {$EXTERNALSYM MSIDBERROR_STRINGOVERFLOW}
  230.   MSIDBERROR_BADLOCALIZEATTRIB = 29; //  invalid localization attribute (primary keys cannot be localized)
  231.   {$EXTERNALSYM MSIDBERROR_BADLOCALIZEATTRIB}
  232. type
  233.   MSIDBERROR = DWORD;
  234.   {$EXTERNALSYM MSIDBERROR}
  235.   TMsiDbError = MSIDBERROR;
  236. const
  237.   MSIRUNMODE_ADMIN           =  0; // admin mode install, else product install
  238.   {$EXTERNALSYM MSIRUNMODE_ADMIN}
  239.   MSIRUNMODE_ADVERTISE       =  1; // installing advertisements, else installing or updating product
  240.   {$EXTERNALSYM MSIRUNMODE_ADVERTISE}
  241.   MSIRUNMODE_MAINTENANCE     =  2; // modifying an existing installation, else new installation
  242.   {$EXTERNALSYM MSIRUNMODE_MAINTENANCE}
  243.   MSIRUNMODE_ROLLBACKENABLED =  3; // rollback is enabled
  244.   {$EXTERNALSYM MSIRUNMODE_ROLLBACKENABLED}
  245.   MSIRUNMODE_LOGENABLED      =  4; // log file active, enabled prior to install session
  246.   {$EXTERNALSYM MSIRUNMODE_LOGENABLED}
  247.   MSIRUNMODE_OPERATIONS      =  5; // spooling execute operations, else in determination phase
  248.   {$EXTERNALSYM MSIRUNMODE_OPERATIONS}
  249.   MSIRUNMODE_REBOOTATEND     =  6; // reboot needed after successful installation (settable)
  250.   {$EXTERNALSYM MSIRUNMODE_REBOOTATEND}
  251.   MSIRUNMODE_REBOOTNOW       =  7; // reboot needed to continue installation (settable)
  252.   {$EXTERNALSYM MSIRUNMODE_REBOOTNOW}
  253.   MSIRUNMODE_CABINET         =  8; // installing files from cabinets and files using Media table
  254.   {$EXTERNALSYM MSIRUNMODE_CABINET}
  255.   MSIRUNMODE_SOURCESHORTNAMES=  9; // source LongFileNames suppressed via PID_MSISOURCE summary property
  256.   {$EXTERNALSYM MSIRUNMODE_SOURCESHORTNAMES}
  257.   MSIRUNMODE_TARGETSHORTNAMES= 10; // target LongFileNames suppressed via SHORTFILENAMES property
  258.   {$EXTERNALSYM MSIRUNMODE_TARGETSHORTNAMES}
  259.   MSIRUNMODE_RESERVED11      = 11; // future use
  260.   {$EXTERNALSYM MSIRUNMODE_RESERVED11}
  261.   MSIRUNMODE_WINDOWS9X       = 12; // operating systems is Windows9?, else Windows NT
  262.   {$EXTERNALSYM MSIRUNMODE_WINDOWS9X}
  263.   MSIRUNMODE_ZAWENABLED      = 13; // operating system supports demand installation
  264.   {$EXTERNALSYM MSIRUNMODE_ZAWENABLED}
  265.   MSIRUNMODE_RESERVED14      = 14; // future use
  266.   {$EXTERNALSYM MSIRUNMODE_RESERVED14}
  267.   MSIRUNMODE_RESERVED15      = 15; // future use
  268.   {$EXTERNALSYM MSIRUNMODE_RESERVED15}
  269.   MSIRUNMODE_SCHEDULED       = 16; // custom action call from install script execution
  270.   {$EXTERNALSYM MSIRUNMODE_SCHEDULED}
  271.   MSIRUNMODE_ROLLBACK        = 17; // custom action call from rollback execution script
  272.   {$EXTERNALSYM MSIRUNMODE_ROLLBACK}
  273.   MSIRUNMODE_COMMIT          = 18; // custom action call from commit execution script
  274.   {$EXTERNALSYM MSIRUNMODE_COMMIT}
  275. type
  276.   MSIRUNMODE = DWORD;
  277.   {$EXTERNALSYM MSIRUNMODE}
  278.   TMsiRunMode = MSIRUNMODE;
  279. const
  280.   INSTALLMESSAGE_TYPEMASK = DWORD($FF000000);  // mask for type code
  281.   {$EXTERNALSYM INSTALLMESSAGE_TYPEMASK}
  282. // Note: INSTALLMESSAGE_ERROR, INSTALLMESSAGE_WARNING, INSTALLMESSAGE_USER are to or'd
  283. // with a message box style to indicate the buttons to display and return:
  284. // MB_OK,MB_OKCANCEL,MB_ABORTRETRYIGNORE,MB_YESNOCANCEL,MB_YESNO,MB_RETRYCANCEL
  285. // the default button (MB_DEFBUTTON1 is normal default):
  286. // MB_DEFBUTTON1, MB_DEFBUTTON2, MB_DEFBUTTON3
  287. // and optionally an icon style:
  288. // MB_ICONERROR, MB_ICONQUESTION, MB_ICONWARNING, MB_ICONINFORMATION
  289. const
  290.   MSITRANSFORM_ERROR_ADDEXISTINGROW   = $00000001;
  291.   {$EXTERNALSYM MSITRANSFORM_ERROR_ADDEXISTINGROW}
  292.   MSITRANSFORM_ERROR_DELMISSINGROW    = $00000002;
  293.   {$EXTERNALSYM MSITRANSFORM_ERROR_DELMISSINGROW}
  294.   MSITRANSFORM_ERROR_ADDEXISTINGTABLE = $00000004;
  295.   {$EXTERNALSYM MSITRANSFORM_ERROR_ADDEXISTINGTABLE}
  296.   MSITRANSFORM_ERROR_DELMISSINGTABLE  = $00000008;
  297.   {$EXTERNALSYM MSITRANSFORM_ERROR_DELMISSINGTABLE}
  298.   MSITRANSFORM_ERROR_UPDATEMISSINGROW = $00000010;
  299.   {$EXTERNALSYM MSITRANSFORM_ERROR_UPDATEMISSINGROW}
  300.   MSITRANSFORM_ERROR_CHANGECODEPAGE   = $00000020;
  301.   {$EXTERNALSYM MSITRANSFORM_ERROR_CHANGECODEPAGE}
  302.   MSITRANSFORM_ERROR_VIEWTRANSFORM    = $00000100;
  303.   {$EXTERNALSYM MSITRANSFORM_ERROR_VIEWTRANSFORM}
  304. type
  305.   MSITRANSFORM_ERROR = DWORD;
  306.   {$EXTERNALSYM MSITRANSFORM_ERROR}
  307.   TMsiTransformError = MSITRANSFORM_ERROR;
  308. const
  309.   MSITRANSFORM_VALIDATE_LANGUAGE                   = $00000001;
  310.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_LANGUAGE}
  311.   MSITRANSFORM_VALIDATE_PRODUCT                    = $00000002;
  312.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_PRODUCT}
  313.   MSITRANSFORM_VALIDATE_PLATFORM                   = $00000004;
  314.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_PLATFORM}
  315.   MSITRANSFORM_VALIDATE_MAJORVERSION               = $00000008;
  316.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_MAJORVERSION}
  317.   MSITRANSFORM_VALIDATE_MINORVERSION               = $00000010;
  318.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_MINORVERSION}
  319.   MSITRANSFORM_VALIDATE_UPDATEVERSION              = $00000020;
  320.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_UPDATEVERSION}
  321.   MSITRANSFORM_VALIDATE_NEWLESSBASEVERSION         = $00000040;
  322.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_NEWLESSBASEVERSION}
  323.   MSITRANSFORM_VALIDATE_NEWLESSEQUALBASEVERSION    = $00000080;
  324.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_NEWLESSEQUALBASEVERSION}
  325.   MSITRANSFORM_VALIDATE_NEWEQUALBASEVERSION        = $00000100;
  326.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_NEWEQUALBASEVERSION}
  327.   MSITRANSFORM_VALIDATE_NEWGREATEREQUALBASEVERSION = $00000200;
  328.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_NEWGREATEREQUALBASEVERSION}
  329.   MSITRANSFORM_VALIDATE_NEWGREATERBASEVERSION      = $00000400;
  330.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_NEWGREATERBASEVERSION}
  331.   MSITRANSFORM_VALIDATE_UPGRADECODE                = $00000800;
  332.   {$EXTERNALSYM MSITRANSFORM_VALIDATE_UPGRADECODE}
  333. type
  334.   MSITRANSFORM_VALIDATE = DWORD;
  335.   {$EXTERNALSYM MSITRANSFORM_VALIDATE}
  336.   TMsiTransformValidate = MSITRANSFORM_VALIDATE;
  337. // -----------------------------------------------------------------------------
  338. // Installer database access functions
  339. // -----------------------------------------------------------------------------
  340. // Prepare a database query, creating a view object
  341. // Returns ERROR_SUCCESS if successful, and the view handle is returned,
  342. // else ERROR_INVALID_HANDLE, ERROR_INVALID_HANDLE_STATE, ERROR_BAD_QUERY_SYNTAX, ERROR_GEN_FAILURE
  343. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  344. function MsiDatabaseOpenViewA(hDatabase: MSIHANDLE; szQuery: LPCSTR; var phView: MSIHANDLE): UINT; stdcall;
  345. {$EXTERNALSYM MsiDatabaseOpenViewA}
  346. function MsiDatabaseOpenViewW(hDatabase: MSIHANDLE; szQuery: LPCWSTR; var phView: MSIHANDLE): UINT; stdcall;
  347. {$EXTERNALSYM MsiDatabaseOpenViewW}
  348. {$IFDEF UNICODE}
  349. function MsiDatabaseOpenView(hDatabase: MSIHANDLE; szQuery: LPCWSTR; var phView: MSIHANDLE): UINT; stdcall;
  350. {$EXTERNALSYM MsiDatabaseOpenView}
  351. {$ELSE}
  352. function MsiDatabaseOpenView(hDatabase: MSIHANDLE; szQuery: LPCSTR; var phView: MSIHANDLE): UINT; stdcall;
  353. {$EXTERNALSYM MsiDatabaseOpenView}
  354. {$ENDIF}
  355. // Returns the MSIDBERROR enum and name of the column corresponding to the error
  356. // Similar to a GetLastError function, but for the view. NOT the same as MsiGetLastErrorRecord
  357. // Returns errors of MsiViewModify.
  358. function MsiViewGetErrorA(hView: MSIHANDLE; szColumnNameBuffer: LPSTR;
  359.   var pcchBuf: DWORD): MSIDBERROR; stdcall;
  360. {$EXTERNALSYM MsiViewGetErrorA}
  361. function MsiViewGetErrorW(hView: MSIHANDLE; szColumnNameBuffer: LPWSTR;
  362.   var pcchBuf: DWORD): MSIDBERROR; stdcall;
  363. {$EXTERNALSYM MsiViewGetErrorW}
  364. {$IFDEF UNICODE}
  365. function MsiViewGetError(hView: MSIHANDLE; szColumnNameBuffer: LPWSTR;
  366.   var pcchBuf: DWORD): MSIDBERROR; stdcall;
  367. {$EXTERNALSYM MsiViewGetError}
  368. {$ELSE}
  369. function MsiViewGetError(hView: MSIHANDLE; szColumnNameBuffer: LPSTR;
  370.   var pcchBuf: DWORD): MSIDBERROR; stdcall;
  371. {$EXTERNALSYM MsiViewGetError}
  372. {$ENDIF}
  373. // Exectute the view query, supplying parameters as required
  374. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_INVALID_HANDLE_STATE, ERROR_GEN_FAILURE
  375. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  376. function MsiViewExecute(hView: MSIHANDLE; hRecord: MSIHANDLE): UINT; stdcall;
  377. {$EXTERNALSYM MsiViewExecute}
  378. // Fetch the next sequential record from the view
  379. // Result is ERROR_SUCCESS if a row is found, and its handle is returned
  380. // else ERROR_NO_MORE_ITEMS if no records remain, and a null handle is returned
  381. // else result is error: ERROR_INVALID_HANDLE_STATE, ERROR_INVALID_HANDLE, ERROR_GEN_FAILURE
  382. function MsiViewFetch(hView: MSIHANDLE; var phRecord: MSIHANDLE): UINT; stdcall;
  383. {$EXTERNALSYM MsiViewFetch}
  384. // Modify a database record, parameters must match types in query columns
  385. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_INVALID_HANDLE_STATE, ERROR_GEN_FAILURE, ERROR_ACCESS_DENIED
  386. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  387. function MsiViewModify(hView: MSIHANDLE; eModifyMode: MSIMODIFY; hRecord: MSIHANDLE): UINT; stdcall;
  388. {$EXTERNALSYM MsiViewModify}
  389. // Return the column names or specifications for the current view
  390. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_INVALID_PARAMETER, or ERROR_INVALID_HANDLE_STATE
  391. function MsiViewGetColumnInfo(hView: MSIHANDLE; eColumnInfo: MSICOLINFO;
  392.   var phRecord: MSIHANDLE): UINT; stdcall;
  393. {$EXTERNALSYM MsiViewGetColumnInfo}
  394. // Release the result set for an executed view, to allow re-execution
  395. // Only needs to be called if not all records have been fetched
  396. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_INVALID_HANDLE_STATE
  397. function MsiViewClose(hView: MSIHANDLE): UINT; stdcall;
  398. {$EXTERNALSYM MsiViewClose}
  399. // Return a record containing the names of all primary key columns for a given table
  400. // Returns an MSIHANDLE for a record containing the name of each column.
  401. // The field count of the record corresponds to the number of primary key columns.
  402. // Field [0] of the record contains the table name.
  403. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_INVALID_TABLE
  404. function MsiDatabaseGetPrimaryKeysA(hDatabase: MSIHANDLE; szTableName: LPCSTR;
  405.   var phRecord: MSIHANDLE): UINT; stdcall;
  406. {$EXTERNALSYM MsiDatabaseGetPrimaryKeysA}
  407. function MsiDatabaseGetPrimaryKeysW(hDatabase: MSIHANDLE; szTableName: LPCWSTR;
  408.   var phRecord: MSIHANDLE): UINT; stdcall;
  409. {$EXTERNALSYM MsiDatabaseGetPrimaryKeysW}
  410. {$IFDEF UNICODE}
  411. function MsiDatabaseGetPrimaryKeys(hDatabase: MSIHANDLE; szTableName: LPCWSTR;
  412.   var phRecord: MSIHANDLE): UINT; stdcall;
  413. {$EXTERNALSYM MsiDatabaseGetPrimaryKeys}
  414. {$ELSE}
  415. function MsiDatabaseGetPrimaryKeys(hDatabase: MSIHANDLE; szTableName: LPCSTR;
  416.   var phRecord: MSIHANDLE): UINT; stdcall;
  417. {$EXTERNALSYM MsiDatabaseGetPrimaryKeys}
  418. {$ENDIF}
  419. // Return an enum defining the state of the table (temporary, unknown, or persistent).
  420. // Returns MSICONDITION_ERROR, MSICONDITION_FALSE, MSICONDITION_TRUE, MSICONDITION_NONE
  421. function MsiDatabaseIsTablePersistentA(hDatabase: MSIHANDLE; szTableName: LPCSTR): MSICONDITION; stdcall;
  422. {$EXTERNALSYM MsiDatabaseIsTablePersistentA}
  423. function MsiDatabaseIsTablePersistentW(hDatabase: MSIHANDLE; szTableName: LPCWSTR): MSICONDITION; stdcall;
  424. {$EXTERNALSYM MsiDatabaseIsTablePersistentW}
  425. {$IFDEF UNICODE}
  426. function MsiDatabaseIsTablePersistent(hDatabase: MSIHANDLE; szTableName: LPCWSTR): MSICONDITION; stdcall;
  427. {$EXTERNALSYM MsiDatabaseIsTablePersistent}
  428. {$ELSE}
  429. function MsiDatabaseIsTablePersistent(hDatabase: MSIHANDLE; szTableName: LPCSTR): MSICONDITION; stdcall;
  430. {$EXTERNALSYM MsiDatabaseIsTablePersistent}
  431. {$ENDIF}
  432. // --------------------------------------------------------------------------
  433. // Summary information stream management functions
  434. // --------------------------------------------------------------------------
  435. // Integer Property IDs:    1, 14, 15, 16, 19
  436. // DateTime Property IDs:   10, 11, 12, 13
  437. // Text Property IDs:       2, 3, 4, 5, 6, 7, 8, 9, 18
  438. // Unsupported Propery IDs: 0 (PID_DICTIONARY), 17 (PID_THUMBNAIL)
  439. // Obtain a handle for the _SummaryInformation stream for an MSI database
  440. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  441. function MsiGetSummaryInformationA(hDatabase: MSIHANDLE; szDatabasePath: LPCSTR;
  442.   uiUpdateCount: UINT; var phSummaryInfo: MSIHANDLE): UINT; stdcall;
  443. {$EXTERNALSYM MsiGetSummaryInformationA}
  444. function MsiGetSummaryInformationW(hDatabase: MSIHANDLE; szDatabasePath: LPCWSTR;
  445.   uiUpdateCount: UINT; var phSummaryInfo: MSIHANDLE): UINT; stdcall;
  446. {$EXTERNALSYM MsiGetSummaryInformationW}
  447. {$IFDEF UNICODE}
  448. function MsiGetSummaryInformation(hDatabase: MSIHANDLE; szDatabasePath: LPCWSTR;
  449.   uiUpdateCount: UINT; var phSummaryInfo: MSIHANDLE): UINT; stdcall;
  450. {$EXTERNALSYM MsiGetSummaryInformation}
  451. {$ELSE}
  452. function MsiGetSummaryInformation(hDatabase: MSIHANDLE; szDatabasePath: LPCSTR;
  453.   uiUpdateCount: UINT; var phSummaryInfo: MSIHANDLE): UINT; stdcall;
  454. {$EXTERNALSYM MsiGetSummaryInformation}
  455. {$ENDIF}
  456. // Obtain the number of existing properties in the SummaryInformation stream
  457. function MsiSummaryInfoGetPropertyCount(hSummaryInfo: MSIHANDLE; var puiPropertyCount: UINT): UINT; stdcall;
  458. {$EXTERNALSYM MsiSummaryInfoGetPropertyCount}
  459. // Set a single summary information property
  460. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_UNKNOWN_PROPERTY
  461. function MsiSummaryInfoSetPropertyA(hSummaryInfo: MSIHANDLE; uiProperty: UINT;
  462.   uiDataType: UINT; iValue: Integer; const pftValue: FILETIME; szValue: LPCSTR): UINT; stdcall;
  463. {$EXTERNALSYM MsiSummaryInfoSetPropertyA}
  464. function MsiSummaryInfoSetPropertyW(hSummaryInfo: MSIHANDLE; uiProperty: UINT;
  465.   uiDataType: UINT; iValue: Integer; const pftValue: FILETIME; szValue: LPCWSTR): UINT; stdcall;
  466. {$EXTERNALSYM MsiSummaryInfoSetPropertyW}
  467. {$IFDEF UNICODE}
  468. function MsiSummaryInfoSetProperty(hSummaryInfo: MSIHANDLE; uiProperty: UINT;
  469.   uiDataType: UINT; iValue: Integer; const pftValue: FILETIME; szValue: LPCWSTR): UINT; stdcall;
  470. {$EXTERNALSYM MsiSummaryInfoSetProperty}
  471. {$ELSE}
  472. function MsiSummaryInfoSetProperty(hSummaryInfo: MSIHANDLE; uiProperty: UINT;
  473.   uiDataType: UINT; iValue: Integer; const pftValue: FILETIME; szValue: LPCSTR): UINT; stdcall;
  474. {$EXTERNALSYM MsiSummaryInfoSetProperty}
  475. {$ENDIF}
  476. // Get a single property from the summary information
  477. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_UNKNOWN_PROPERTY
  478. function MsiSummaryInfoGetPropertyA(hSummaryInfo: MSIHANDLE; uiProperty: UINT;
  479.   var puiDataType: UINT; var piValue: Integer; var pftValue: FILETIME; szValueBuf: LPSTR;
  480.   var pcchValueBuf: DWORD): UINT; stdcall;
  481. {$EXTERNALSYM MsiSummaryInfoGetPropertyA}
  482. function MsiSummaryInfoGetPropertyW(hSummaryInfo: MSIHANDLE; uiProperty: UINT;
  483.   var puiDataType: UINT; var piValue: Integer; var pftValue: FILETIME; szValueBuf: LPWSTR;
  484.   var pcchValueBuf: DWORD): UINT; stdcall;
  485. {$EXTERNALSYM MsiSummaryInfoGetPropertyW}
  486. {$IFDEF UNICODE}
  487. function MsiSummaryInfoGetProperty(hSummaryInfo: MSIHANDLE; uiProperty: UINT;
  488.   var puiDataType: UINT; var piValue: Integer; var pftValue: FILETIME; szValueBuf: LPWSTR;
  489.   var pcchValueBuf: DWORD): UINT; stdcall;
  490. {$EXTERNALSYM MsiSummaryInfoGetProperty}
  491. {$ELSE}
  492. function MsiSummaryInfoGetProperty(hSummaryInfo: MSIHANDLE; uiProperty: UINT;
  493.   var puiDataType: UINT; var piValue: Integer; var pftValue: FILETIME; szValueBuf: LPSTR;
  494.   var pcchValueBuf: DWORD): UINT; stdcall;
  495. {$EXTERNALSYM MsiSummaryInfoGetProperty}
  496. {$ENDIF}
  497. // Write back changed information to summary information stream
  498. function MsiSummaryInfoPersist(hSummaryInfo: MSIHANDLE): UINT; stdcall;
  499. {$EXTERNALSYM MsiSummaryInfoPersist}
  500. // --------------------------------------------------------------------------
  501. // Installer database management functions - not used by custom actions
  502. // --------------------------------------------------------------------------
  503. // Open an installer database, specifying the persistance mode, which is a pointer.
  504. // Predefined persist values are reserved pointer values, requiring pointer arithmetic.
  505. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  506. function MsiOpenDatabaseA(szDatabasePath: LPCSTR; szPersist: LPCSTR;
  507.   var phDatabase: MSIHANDLE): UINT; stdcall;
  508. {$EXTERNALSYM MsiOpenDatabaseA}
  509. function MsiOpenDatabaseW(szDatabasePath: LPCWSTR; szPersist: LPCWSTR;
  510.   var phDatabase: MSIHANDLE): UINT; stdcall;
  511. {$EXTERNALSYM MsiOpenDatabaseW}
  512. {$IFDEF UNICODE}
  513. function MsiOpenDatabase(szDatabasePath: LPCWSTR; szPersist: LPCWSTR;
  514.   var phDatabase: MSIHANDLE): UINT; stdcall;
  515. {$EXTERNALSYM MsiOpenDatabase}
  516. {$ELSE}
  517. function MsiOpenDatabase(szDatabasePath: LPCSTR; szPersist: LPCSTR;
  518.   var phDatabase: MSIHANDLE): UINT; stdcall;
  519. {$EXTERNALSYM MsiOpenDatabase}
  520. {$ENDIF}
  521. // Import an MSI text archive table into an open database
  522. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  523. function MsiDatabaseImportA(hDatabase: MSIHANDLE; szFolderPath: LPCSTR;
  524.   szFileName: LPCSTR): UINT; stdcall;
  525. {$EXTERNALSYM MsiDatabaseImportA}
  526. function MsiDatabaseImportW(hDatabase: MSIHANDLE; szFolderPath: LPCWSTR;
  527.   szFileName: LPCWSTR): UINT; stdcall;
  528. {$EXTERNALSYM MsiDatabaseImportW}
  529. {$IFDEF UNICODE}
  530. function MsiDatabaseImport(hDatabase: MSIHANDLE; szFolderPath: LPCWSTR;
  531.   szFileName: LPCWSTR): UINT; stdcall;
  532. {$EXTERNALSYM MsiDatabaseImport}
  533. {$ELSE}
  534. function MsiDatabaseImport(hDatabase: MSIHANDLE; szFolderPath: LPCSTR;
  535.   szFileName: LPCSTR): UINT; stdcall;
  536. {$EXTERNALSYM MsiDatabaseImport}
  537. {$ENDIF}
  538. // Export an MSI table from an open database to a text archive file
  539. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  540. function MsiDatabaseExportA(hDatabase: MSIHANDLE; szTableName: LPCSTR;
  541.   szFolderPath: LPCSTR; szFileName: LPCSTR): UINT; stdcall;
  542. {$EXTERNALSYM MsiDatabaseExportA}
  543. function MsiDatabaseExportW(hDatabase: MSIHANDLE; szTableName: LPCWSTR;
  544.   szFolderPath: LPCWSTR; szFileName: LPCWSTR): UINT; stdcall;
  545. {$EXTERNALSYM MsiDatabaseExportW}
  546. {$IFDEF UNICODE}
  547. function MsiDatabaseExport(hDatabase: MSIHANDLE; szTableName: LPCWSTR;
  548.   szFolderPath: LPCWSTR; szFileName: LPCWSTR): UINT; stdcall;
  549. {$EXTERNALSYM MsiDatabaseExport}
  550. {$ELSE}
  551. function MsiDatabaseExport(hDatabase: MSIHANDLE; szTableName: LPCSTR;
  552.   szFolderPath: LPCSTR; szFileName: LPCSTR): UINT; stdcall;
  553. {$EXTERNALSYM MsiDatabaseExport}
  554. {$ENDIF}
  555. // Merge two database together, allowing duplicate rows
  556. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  557. function MsiDatabaseMergeA(hDatabase: MSIHANDLE; hDatabaseMerge: MSIHANDLE;
  558.   szTableName: LPCSTR): UINT; stdcall;
  559. {$EXTERNALSYM MsiDatabaseMergeA}
  560. function MsiDatabaseMergeW(hDatabase: MSIHANDLE; hDatabaseMerge: MSIHANDLE;
  561.   szTableName: LPCWSTR): UINT; stdcall;
  562. {$EXTERNALSYM MsiDatabaseMergeW}
  563. {$IFDEF UNICODE}
  564. function MsiDatabaseMerge(hDatabase: MSIHANDLE; hDatabaseMerge: MSIHANDLE;
  565.   szTableName: LPCWSTR): UINT; stdcall;
  566. {$EXTERNALSYM MsiDatabaseMerge}
  567. {$ELSE}
  568. function MsiDatabaseMerge(hDatabase: MSIHANDLE; hDatabaseMerge: MSIHANDLE;
  569.   szTableName: LPCSTR): UINT; stdcall;
  570. {$EXTERNALSYM MsiDatabaseMerge}
  571. {$ENDIF}
  572. // Generate a transform file of differences between two databases
  573. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  574. function MsiDatabaseGenerateTransformA(hDatabase: MSIHANDLE; hDatabaseReference: MSIHANDLE;
  575.   szTransformFile: LPCSTR; iReserved1: Integer; iReserved2: Integer): UINT; stdcall;
  576. {$EXTERNALSYM MsiDatabaseGenerateTransformA}
  577. function MsiDatabaseGenerateTransformW(hDatabase: MSIHANDLE; hDatabaseReference: MSIHANDLE;
  578.   szTransformFile: LPCWSTR; iReserved1: Integer; iReserved2: Integer): UINT; stdcall;
  579. {$EXTERNALSYM MsiDatabaseGenerateTransformW}
  580. {$IFDEF UNICODE}
  581. function MsiDatabaseGenerateTransform(hDatabase: MSIHANDLE; hDatabaseReference: MSIHANDLE;
  582.   szTransformFile: LPCWSTR; iReserved1: Integer; iReserved2: Integer): UINT; stdcall;
  583. {$EXTERNALSYM MsiDatabaseGenerateTransform}
  584. {$ELSE}
  585. function MsiDatabaseGenerateTransform(hDatabase: MSIHANDLE; hDatabaseReference: MSIHANDLE;
  586.   szTransformFile: LPCSTR; iReserved1: Integer; iReserved2: Integer): UINT; stdcall;
  587. {$EXTERNALSYM MsiDatabaseGenerateTransform}
  588. {$ENDIF}
  589. // Apply a transform file containing database difference
  590. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  591. function MsiDatabaseApplyTransformA(hDatabase: MSIHANDLE; szTransformFile: LPCSTR;
  592.   iErrorConditions: Integer): UINT; stdcall;
  593. {$EXTERNALSYM MsiDatabaseApplyTransformA}
  594. function MsiDatabaseApplyTransformW(hDatabase: MSIHANDLE; szTransformFile: LPCWSTR;
  595.   iErrorConditions: Integer): UINT; stdcall;
  596. {$EXTERNALSYM MsiDatabaseApplyTransformW}
  597. {$IFDEF UNICODE}
  598. function MsiDatabaseApplyTransform(hDatabase: MSIHANDLE; szTransformFile: LPCWSTR;
  599.   iErrorConditions: Integer): UINT; stdcall;
  600. {$EXTERNALSYM MsiDatabaseApplyTransform}
  601. {$ELSE}
  602. function MsiDatabaseApplyTransform(hDatabase: MSIHANDLE; szTransformFile: LPCSTR;
  603.   iErrorConditions: Integer): UINT; stdcall;
  604. {$EXTERNALSYM MsiDatabaseApplyTransform}
  605. {$ENDIF}
  606. // Create summary information of existing transform to include validation and error conditions
  607. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  608. function MsiCreateTransformSummaryInfoA(hDatabase: MSIHANDLE; hDatabaseReference: MSIHANDLE;
  609.   szTransformFile: LPCSTR; iErrorConditions: Integer; iValidation: Integer): UINT; stdcall;
  610. {$EXTERNALSYM MsiCreateTransformSummaryInfoA}
  611. function MsiCreateTransformSummaryInfoW(hDatabase: MSIHANDLE; hDatabaseReference: MSIHANDLE;
  612.   szTransformFile: LPCWSTR; iErrorConditions: Integer; iValidation: Integer): UINT; stdcall;
  613. {$EXTERNALSYM MsiCreateTransformSummaryInfoW}
  614. {$IFDEF UNICODE}
  615. function MsiCreateTransformSummaryInfo(hDatabase: MSIHANDLE; hDatabaseReference: MSIHANDLE;
  616.   szTransformFile: LPCWSTR; iErrorConditions: Integer; iValidation: Integer): UINT; stdcall;
  617. {$EXTERNALSYM MsiCreateTransformSummaryInfo}
  618. {$ELSE}
  619. function MsiCreateTransformSummaryInfo(hDatabase: MSIHANDLE; hDatabaseReference: MSIHANDLE;
  620.   szTransformFile: LPCSTR; iErrorConditions: Integer; iValidation: Integer): UINT; stdcall;
  621. {$EXTERNALSYM MsiCreateTransformSummaryInfo}
  622. {$ENDIF}
  623. // Write out all persistent table data, ignored if database opened read-only
  624. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  625. function MsiDatabaseCommit(hDatabase: MSIHANDLE): UINT; stdcall;
  626. {$EXTERNALSYM MsiDatabaseCommit}
  627. // Return the update state of a database
  628. function MsiGetDatabaseState(hDatabase: MSIHANDLE): MSIDBSTATE; stdcall;
  629. {$EXTERNALSYM MsiGetDatabaseState}
  630. // --------------------------------------------------------------------------
  631. // Record object functions
  632. // --------------------------------------------------------------------------
  633. // Create a new record object with the requested number of fields
  634. // Field 0, not included in count, is used for format strings and op codes
  635. // All fields are initialized to null
  636. // Returns a handle to the created record, or 0 if memory could not be allocated
  637. function MsiCreateRecord(cParams: UINT): MSIHANDLE; stdcall;
  638. {$EXTERNALSYM MsiCreateRecord}
  639. // Report whether a record field is NULL
  640. // Returns TRUE if the field is null or does not exist
  641. // Returns FALSE if the field contains data, or the handle is invalid
  642. function MsiRecordIsNull(hRecord: MSIHANDLE; iField: UINT): BOOL; stdcall;
  643. {$EXTERNALSYM MsiRecordIsNull}
  644. // Return the length of a record field
  645. // Returns 0 if field is NULL or non-existent
  646. // Returns sizeof(Integer) if integer data
  647. // Returns character count if string data (not counting null terminator)
  648. // Returns bytes count if stream data
  649. function MsiRecordDataSize(hRecord: MSIHANDLE; iField: UINT): UINT; stdcall;
  650. {$EXTERNALSYM MsiRecordDataSize}
  651. // Set a record field to an integer value
  652. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_INVALID_FIELD
  653. function MsiRecordSetInteger(hRecord: MSIHANDLE; iField: UINT; iValue: Integer): UINT; stdcall;
  654. {$EXTERNALSYM MsiRecordSetInteger}
  655. // Copy a string into the designated field
  656. // A null string pointer and an empty string both set the field to null
  657. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_INVALID_FIELD
  658. function MsiRecordSetStringA(hRecord: MSIHANDLE; iField: UINT; szValue: LPCSTR): UINT; stdcall;
  659. {$EXTERNALSYM MsiRecordSetStringA}
  660. function MsiRecordSetStringW(hRecord: MSIHANDLE; iField: UINT; szValue: LPCWSTR): UINT; stdcall;
  661. {$EXTERNALSYM MsiRecordSetStringW}
  662. {$IFDEF UNICODE}
  663. function MsiRecordSetString(hRecord: MSIHANDLE; iField: UINT; szValue: LPCWSTR): UINT; stdcall;
  664. {$EXTERNALSYM MsiRecordSetString}
  665. {$ELSE}
  666. function MsiRecordSetString(hRecord: MSIHANDLE; iField: UINT; szValue: LPCSTR): UINT; stdcall;
  667. {$EXTERNALSYM MsiRecordSetString}
  668. {$ENDIF}
  669. // Return the integer value from a record field
  670. // Returns the value MSI_NULL_INTEGER if the field is null
  671. // or if the field is a string that cannot be converted to an integer
  672. function MsiRecordGetInteger(hRecord: MSIHANDLE; iField: UINT): Integer; stdcall;
  673. {$EXTERNALSYM MsiRecordGetInteger}
  674. // Return the string value of a record field
  675. // Integer fields will be converted to a string
  676. // Null and non-existent fields will report a value of 0
  677. // Fields containing stream data will return ERROR_INVALID_DATATYPE
  678. // Returns ERROR_SUCCESS, ERROR_MORE_DATA,
  679. //         ERROR_INVALID_HANDLE, ERROR_INVALID_FIELD, ERROR_BAD_ARGUMENTS
  680. function MsiRecordGetStringA(hRecord: MSIHANDLE; iField: UINT; szValueBuf: LPSTR;
  681.   var pcchValueBuf: DWORD): UINT; stdcall;
  682. {$EXTERNALSYM MsiRecordGetStringA}
  683. function MsiRecordGetStringW(hRecord: MSIHANDLE; iField: UINT; szValueBuf: LPWSTR;
  684.   var pcchValueBuf: DWORD): UINT; stdcall;
  685. {$EXTERNALSYM MsiRecordGetStringW}
  686. {$IFDEF UNICODE}
  687. function MsiRecordGetString(hRecord: MSIHANDLE; iField: UINT; szValueBuf: LPWSTR;
  688.   var pcchValueBuf: DWORD): UINT; stdcall;
  689. {$EXTERNALSYM MsiRecordGetString}
  690. {$ELSE}
  691. function MsiRecordGetString(hRecord: MSIHANDLE; iField: UINT; szValueBuf: LPSTR;
  692.   var pcchValueBuf: DWORD): UINT; stdcall;
  693. {$EXTERNALSYM MsiRecordGetString}
  694. {$ENDIF}
  695. // Returns the number of fields allocated in the record
  696. // Does not count field 0, used for formatting and op codes
  697. function MsiRecordGetFieldCount(hRecord: MSIHANDLE): UINT; stdcall;
  698. {$EXTERNALSYM MsiRecordGetFieldCount}
  699. // Set a record stream field from a file
  700. // The contents of the specified file will be read into a stream object
  701. // The stream will be persisted if the record is inserted into the database
  702. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  703. function MsiRecordSetStreamA(hRecord: MSIHANDLE; iField: UINT; szFilePath: LPCSTR): UINT; stdcall;
  704. {$EXTERNALSYM MsiRecordSetStreamA}
  705. function MsiRecordSetStreamW(hRecord: MSIHANDLE; iField: UINT; szFilePath: LPCWSTR): UINT; stdcall;
  706. {$EXTERNALSYM MsiRecordSetStreamW}
  707. {$IFDEF UNICODE}
  708. function MsiRecordSetStream(hRecord: MSIHANDLE; iField: UINT; szFilePath: LPCWSTR): UINT; stdcall;
  709. {$EXTERNALSYM MsiRecordSetStream}
  710. {$ELSE}
  711. function MsiRecordSetStream(hRecord: MSIHANDLE; iField: UINT; szFilePath: LPCSTR): UINT; stdcall;
  712. {$EXTERNALSYM MsiRecordSetStream}
  713. {$ENDIF}
  714. // Read bytes from a record stream field into a buffer
  715. // Must set the in/out argument to the requested byte count to read
  716. // The number of bytes transferred is returned through the argument
  717. // If no more bytes are available, ERROR_SUCCESS is still returned
  718. function MsiRecordReadStream(hRecord: MSIHANDLE; iField: UINT; szDataBuf: PChar;
  719.   var pcbDataBuf: DWORD): UINT; stdcall;
  720. {$EXTERNALSYM MsiRecordReadStream}
  721. // Clears all data fields in a record to NULL
  722. function MsiRecordClearData(hRecord: MSIHANDLE): UINT; stdcall;
  723. {$EXTERNALSYM MsiRecordClearData}
  724. // --------------------------------------------------------------------------
  725. // Functions to access a running installation, called from custom actions
  726. // The install handle is the single argument passed to custom actions
  727. // --------------------------------------------------------------------------
  728. // Return a handle to the database currently in use by this installer instance
  729. function MsiGetActiveDatabase(hInstall: MSIHANDLE): MSIHANDLE; stdcall;
  730. {$EXTERNALSYM MsiGetActiveDatabase}
  731. // Set the value for an installer property
  732. // If the property is not defined, it will be created
  733. // If the value is null or an empty string, the property will be removed
  734. // Returns ERROR_SUCCESS, ERROR_INVALID_HANDLE, ERROR_BAD_ARGUMENTS
  735. function MsiSetPropertyA(hInstall: MSIHANDLE; szName: LPCSTR; szValue: LPCSTR): UINT; stdcall;
  736. {$EXTERNALSYM MsiSetPropertyA}
  737. function MsiSetPropertyW(hInstall: MSIHANDLE; szName: LPCWSTR; szValue: LPCWSTR): UINT; stdcall;
  738. {$EXTERNALSYM MsiSetPropertyW}
  739. {$IFDEF UNICODE}
  740. function MsiSetProperty(hInstall: MSIHANDLE; szName: LPCWSTR; szValue: LPCWSTR): UINT; stdcall;
  741. {$EXTERNALSYM MsiSetProperty}
  742. {$ELSE}
  743. function MsiSetProperty(hInstall: MSIHANDLE; szName: LPCSTR; szValue: LPCSTR): UINT; stdcall;
  744. {$EXTERNALSYM MsiSetProperty}
  745. {$ENDIF}
  746. // Get the value for an installer property
  747. // If the property is not defined, it is equivalent to a 0-length value, not error
  748. // Returns ERROR_SUCCESS, ERROR_MORE_DATA, ERROR_INVALID_HANDLE, ERROR_BAD_ARGUMENTS
  749. function MsiGetPropertyA(hInstall: MSIHANDLE; szName: LPCSTR; szValueBuf: LPSTR;
  750.   var pcchValueBuf: DWORD): UINT; stdcall;
  751. {$EXTERNALSYM MsiGetPropertyA}
  752. function MsiGetPropertyW(hInstall: MSIHANDLE; szName: LPCWSTR; szValueBuf: LPWSTR;
  753.   var pcchValueBuf: DWORD): UINT; stdcall;
  754. {$EXTERNALSYM MsiGetPropertyW}
  755. {$IFDEF UNICODE}
  756. function MsiGetProperty(hInstall: MSIHANDLE; szName: LPCWSTR; szValueBuf: LPWSTR;
  757.   var pcchValueBuf: DWORD): UINT; stdcall;
  758. {$EXTERNALSYM MsiGetProperty}
  759. {$ELSE}
  760. function MsiGetProperty(hInstall: MSIHANDLE; szName: LPCSTR; szValueBuf: LPSTR;
  761.   var pcchValueBuf: DWORD): UINT; stdcall;
  762. {$EXTERNALSYM MsiGetProperty}
  763. {$ENDIF}
  764. // Return the numeric language for the currently running install
  765. // Returns 0 if an install not running
  766. function MsiGetLanguage(hInstall: MSIHANDLE): LANGID; stdcall;
  767. {$EXTERNALSYM MsiGetLanguage}
  768. // Return one of the boolean internal installer states
  769. // Returns FALSE if the handle is not active or if the mode is not implemented
  770. function MsiGetMode(hInstall: MSIHANDLE; eRunMode: MSIRUNMODE): BOOL; stdcall;
  771. {$EXTERNALSYM MsiGetMode}
  772. // Set an internal install session boolean mode - Note: most modes are read-only
  773. // Returns ERROR_SUCCESS if the mode can be set to the desired state
  774. // Returns ERROR_ACCESS_DENIED if the mode is not settable
  775. // Returns ERROR_INVALID_HANDLE if the handle is not an active install session
  776. function MsiSetMode(hInstall: MSIHANDLE; eRunMode: MSIRUNMODE; fState: BOOL): UINT; stdcall;
  777. {$EXTERNALSYM MsiSetMode}
  778. // Format record data using a format string containing field markers and/or properties
  779. // Record field 0 must contain the format string
  780. // Other fields must contain data that may be referenced by the format string.
  781. function MsiFormatRecordA(hInstall: MSIHANDLE; hRecord: MSIHANDLE; szResultBuf: LPSTR;
  782.   var pcchResultBuf: DWORD): UINT; stdcall;
  783. {$EXTERNALSYM MsiFormatRecordA}
  784. function MsiFormatRecordW(hInstall: MSIHANDLE; hRecord: MSIHANDLE; szResultBuf: LPWSTR;
  785.   var pcchResultBuf: DWORD): UINT; stdcall;
  786. {$EXTERNALSYM MsiFormatRecordW}
  787. {$IFDEF UNICODE}
  788. function MsiFormatRecord(hInstall: MSIHANDLE; hRecord: MSIHANDLE; szResultBuf: LPWSTR;
  789.   var pcchResultBuf: DWORD): UINT; stdcall;
  790. {$EXTERNALSYM MsiFormatRecord}
  791. {$ELSE}
  792. function MsiFormatRecord(hInstall: MSIHANDLE; hRecord: MSIHANDLE; szResultBuf: LPSTR;
  793.   var pcchResultBuf: DWORD): UINT; stdcall;
  794. {$EXTERNALSYM MsiFormatRecord}
  795. {$ENDIF}
  796. // Execute another action, either built-in, custom, or UI wizard
  797. // Returns ERROR_FUNCTION_NOT_CALLED if action not found
  798. // Returns ERROR_SUCCESS if action completed succesfully
  799. // Returns ERROR_INSTALL_USEREXIT if user cancelled during action
  800. // Returns ERROR_INSTALL_FAILURE if action failed
  801. // Returns ERROR_INSTALL_SUSPEND if user suspended installation
  802. // Returns ERROR_MORE_DATA if action wishes to skip remaining actions
  803. // Returns ERROR_INVALID_HANDLE_STATE if install session not active
  804. // Returns ERROR_INVALID_DATA if failure calling custom action
  805. // Returns ERROR_INVALID_HANDLE or ERROR_INVALID_PARAMETER if arguments invalid
  806. function MsiDoActionA(hInstall: MSIHANDLE; szAction: LPCSTR): UINT; stdcall;
  807. {$EXTERNALSYM MsiDoActionA}
  808. function MsiDoActionW(hInstall: MSIHANDLE; szAction: LPCWSTR): UINT; stdcall;
  809. {$EXTERNALSYM MsiDoActionW}
  810. {$IFDEF UNICODE}
  811. function MsiDoAction(hInstall: MSIHANDLE; szAction: LPCWSTR): UINT; stdcall;
  812. {$EXTERNALSYM MsiDoAction}
  813. {$ELSE}
  814. function MsiDoAction(hInstall: MSIHANDLE; szAction: LPCSTR): UINT; stdcall;
  815. {$EXTERNALSYM MsiDoAction}
  816. {$ENDIF}
  817. // Execute another action sequence, as descibed in the specified table
  818. // Returns the same error codes as MsiDoAction
  819. function MsiSequenceA(hInstall: MSIHANDLE; szTable: LPCSTR; iSequenceMode: Integer): UINT; stdcall;
  820. {$EXTERNALSYM MsiSequenceA}
  821. function MsiSequenceW(hInstall: MSIHANDLE; szTable: LPCWSTR; iSequenceMode: Integer): UINT; stdcall;
  822. {$EXTERNALSYM MsiSequenceW}
  823. {$IFDEF UNICODE}
  824. function MsiSequence(hInstall: MSIHANDLE; szTable: LPCWSTR; iSequenceMode: Integer): UINT; stdcall;
  825. {$EXTERNALSYM MsiSequence}
  826. {$ELSE}
  827. function MsiSequence(hInstall: MSIHANDLE; szTable: LPCSTR; iSequenceMode: Integer): UINT; stdcall;
  828. {$EXTERNALSYM MsiSequence}
  829. {$ENDIF}
  830. // Send an error record to the installer for processing.
  831. // If field 0 (template) is not set, field 1 must be set to the error code,
  832. //   corresponding the the error message in the Error database table,
  833. //   and the message will be formatted using the template from the Error table
  834. //   before passing it to the UI handler for display.
  835. // Returns Win32 button codes: IDOK IDCANCEL IDABORT IDRETRY IDIGNORE IDYES IDNO
  836. //   or 0 if no action taken, or -1 if invalid argument or handle
  837. function MsiProcessMessage(hInstall: MSIHANDLE; eMessageType: INSTALLMESSAGE;
  838.   hRecord: MSIHANDLE): Integer; stdcall;
  839. {$EXTERNALSYM MsiProcessMessage}
  840. // Evaluate a conditional expression containing property names and values
  841. function MsiEvaluateConditionA(hInstall: MSIHANDLE; szCondition: LPCSTR): MSICONDITION; stdcall;
  842. {$EXTERNALSYM MsiEvaluateConditionA}
  843. function MsiEvaluateConditionW(hInstall: MSIHANDLE; szCondition: LPCWSTR): MSICONDITION; stdcall;
  844. {$EXTERNALSYM MsiEvaluateConditionW}
  845. {$IFDEF UNICODE}
  846. function MsiEvaluateCondition(hInstall: MSIHANDLE; szCondition: LPCWSTR): MSICONDITION; stdcall;
  847. {$EXTERNALSYM MsiEvaluateCondition}
  848. {$ELSE}
  849. function MsiEvaluateCondition(hInstall: MSIHANDLE; szCondition: LPCSTR): MSICONDITION; stdcall;
  850. {$EXTERNALSYM MsiEvaluateCondition}
  851. {$ENDIF}
  852. // Get the installed state and requested action state of a feature
  853. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  854. function MsiGetFeatureStateA(hInstall: MSIHANDLE; szFeature: LPCSTR;
  855.   var piInstalled: INSTALLSTATE; var piAction: INSTALLSTATE): UINT; stdcall;
  856. {$EXTERNALSYM MsiGetFeatureStateA}
  857. function MsiGetFeatureStateW(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  858.   var piInstalled: INSTALLSTATE; var piAction: INSTALLSTATE): UINT; stdcall;
  859. {$EXTERNALSYM MsiGetFeatureStateW}
  860. {$IFDEF UNICODE}
  861. function MsiGetFeatureState(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  862.   var piInstalled: INSTALLSTATE; var piAction: INSTALLSTATE): UINT; stdcall;
  863. {$EXTERNALSYM MsiGetFeatureState}
  864. {$ELSE}
  865. function MsiGetFeatureState(hInstall: MSIHANDLE; szFeature: LPCSTR;
  866.   var piInstalled: INSTALLSTATE; var piAction: INSTALLSTATE): UINT; stdcall;
  867. {$EXTERNALSYM MsiGetFeatureState}
  868. {$ENDIF}
  869. // Request a feature to be set to a specified state
  870. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  871. function MsiSetFeatureStateA(hInstall: MSIHANDLE; szFeature: LPCSTR;
  872.   iState: INSTALLSTATE): UINT; stdcall;
  873. {$EXTERNALSYM MsiSetFeatureStateA}
  874. function MsiSetFeatureStateW(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  875.   iState: INSTALLSTATE): UINT; stdcall;
  876. {$EXTERNALSYM MsiSetFeatureStateW}
  877. {$IFDEF UNICODE}
  878. function MsiSetFeatureState(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  879.   iState: INSTALLSTATE): UINT; stdcall;
  880. {$EXTERNALSYM MsiSetFeatureState}
  881. {$ELSE}
  882. function MsiSetFeatureState(hInstall: MSIHANDLE; szFeature: LPCSTR;
  883.   iState: INSTALLSTATE): UINT; stdcall;
  884. {$EXTERNALSYM MsiSetFeatureState}
  885. {$ENDIF}
  886. // Set the attribute bits of a specified feature at runtime.
  887. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  888. function MsiSetFeatureAttributesA(hInstall: MSIHANDLE; szFeature: LPCSTR;
  889.   dwAttributes: DWORD): UINT; stdcall;
  890. {$EXTERNALSYM MsiSetFeatureAttributesA}
  891. function MsiSetFeatureAttributesW(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  892.   dwAttributes: DWORD): UINT; stdcall;
  893. {$EXTERNALSYM MsiSetFeatureAttributesW}
  894. {$IFDEF UNICODE}
  895. function MsiSetFeatureAttributes(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  896.   dwAttributes: DWORD): UINT; stdcall;
  897. {$EXTERNALSYM MsiSetFeatureAttributes}
  898. {$ELSE}
  899. function MsiSetFeatureAttributes(hInstall: MSIHANDLE; szFeature: LPCSTR;
  900.   dwAttributes: DWORD): UINT; stdcall;
  901. {$EXTERNALSYM MsiSetFeatureAttributes}
  902. {$ENDIF}
  903. // Get the installed state and requested action state of a component
  904. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  905. function MsiGetComponentStateA(hInstall: MSIHANDLE; szComponent: LPCSTR;
  906.   var piInstalled: INSTALLSTATE; var piAction: INSTALLSTATE): UINT; stdcall;
  907. {$EXTERNALSYM MsiGetComponentStateA}
  908. function MsiGetComponentStateW(hInstall: MSIHANDLE; szComponent: LPCWSTR;
  909.   var piInstalled: INSTALLSTATE; var piAction: INSTALLSTATE): UINT; stdcall;
  910. {$EXTERNALSYM MsiGetComponentStateW}
  911. {$IFDEF UNICODE}
  912. function MsiGetComponentState(hInstall: MSIHANDLE; szComponent: LPCWSTR;
  913.   var piInstalled: INSTALLSTATE; var piAction: INSTALLSTATE): UINT; stdcall;
  914. {$EXTERNALSYM MsiGetComponentState}
  915. {$ELSE}
  916. function MsiGetComponentState(hInstall: MSIHANDLE; szComponent: LPCSTR;
  917.   var piInstalled: INSTALLSTATE; var piAction: INSTALLSTATE): UINT; stdcall;
  918. {$EXTERNALSYM MsiGetComponentState}
  919. {$ENDIF}
  920. // Request a component to be set to a specified state
  921. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  922. function MsiSetComponentStateA(hInstall: MSIHANDLE; szComponent: LPCSTR;
  923.   iState: INSTALLSTATE): UINT; stdcall;
  924. {$EXTERNALSYM MsiSetComponentStateA}
  925. function MsiSetComponentStateW(hInstall: MSIHANDLE; szComponent: LPCWSTR;
  926.   iState: INSTALLSTATE): UINT; stdcall;
  927. {$EXTERNALSYM MsiSetComponentStateW}
  928. {$IFDEF UNICODE}
  929. function MsiSetComponentState(hInstall: MSIHANDLE; szComponent: LPCWSTR;
  930.   iState: INSTALLSTATE): UINT; stdcall;
  931. {$EXTERNALSYM MsiSetComponentState}
  932. {$ELSE}
  933. function MsiSetComponentState(hInstall: MSIHANDLE; szComponent: LPCSTR;
  934.   iState: INSTALLSTATE): UINT; stdcall;
  935. {$EXTERNALSYM MsiSetComponentState}
  936. {$ENDIF}
  937. // Return the disk cost for a feature and related features
  938. // Can specify either current feature state or proposed state
  939. // Can specify extent of related features to cost
  940. // Note that adding costs for several features may produce an
  941. // excessively large cost due to shared components and parents.
  942. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  943. function MsiGetFeatureCostA(hInstall: MSIHANDLE; szFeature: LPCSTR;
  944.   iCostTree: MSICOSTTREE; iState: INSTALLSTATE; var piCost: Integer): UINT; stdcall;
  945. {$EXTERNALSYM MsiGetFeatureCostA}
  946. function MsiGetFeatureCostW(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  947.   iCostTree: MSICOSTTREE; iState: INSTALLSTATE; var piCost: Integer): UINT; stdcall;
  948. {$EXTERNALSYM MsiGetFeatureCostW}
  949. {$IFDEF UNICODE}
  950. function MsiGetFeatureCost(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  951.   iCostTree: MSICOSTTREE; iState: INSTALLSTATE; var piCost: Integer): UINT; stdcall;
  952. {$EXTERNALSYM MsiGetFeatureCost}
  953. {$ELSE}
  954. function MsiGetFeatureCost(hInstall: MSIHANDLE; szFeature: LPCSTR;
  955.   iCostTree: MSICOSTTREE; iState: INSTALLSTATE; var piCost: Integer): UINT; stdcall;
  956. {$EXTERNALSYM MsiGetFeatureCost}
  957. {$ENDIF}
  958. // Enumerates the costs and temporary costs per drives for
  959. // szComponent. If szComponent is set to NULL, it enumerates
  960. // the above costs for the engine, per drives.
  961. //
  962. // The enumeration is 0-based, i.e. it returns the data for
  963. // the first drive when called w/ dwIndex set to 0.
  964. //
  965. // Can specify either current feature state or proposed state.
  966. //
  967. // Execution of this function sets the error record, accessible
  968. // via MsiGetLastErrorRecord.
  969. function MsiEnumComponentCostsA(hInstall: MSIHANDLE; szComponent: LPCSTR; dwIndex: DWORD; iState: INSTALLSTATE;
  970.   szDriveBuf: LPSTR; var pcchDriveBuf: DWORD; var piCost: INT; piTempCost: INT): UINT; stdcall;
  971. {$EXTERNALSYM MsiEnumComponentCostsA}
  972. function MsiEnumComponentCostsW(hInstall: MSIHANDLE; szComponent: LPCWSTR; dwIndex: DWORD; iState: INSTALLSTATE;
  973.   szDriveBuf: LPWSTR; var pcchDriveBuf: DWORD; var piCost: INT; var piTempCost: INT): UINT; stdcall;
  974. {$EXTERNALSYM MsiEnumComponentCostsW}
  975. {$IFDEF UNICODE}
  976. function MsiEnumComponentCosts(hInstall: MSIHANDLE; szComponent: LPCWSTR; dwIndex: DWORD; iState: INSTALLSTATE;
  977.   szDriveBuf: LPWSTR; var pcchDriveBuf: DWORD; var piCost: INT; var piTempCost: INT): UINT; stdcall;
  978. {$EXTERNALSYM MsiEnumComponentCosts}
  979. {$ELSE}
  980. function MsiEnumComponentCosts(hInstall: MSIHANDLE; szComponent: LPCSTR; dwIndex: DWORD; iState: INSTALLSTATE;
  981.   szDriveBuf: LPSTR; var pcchDriveBuf: DWORD; var piCost: INT; piTempCost: INT): UINT; stdcall;
  982. {$EXTERNALSYM MsiEnumComponentCosts}
  983. {$ENDIF}
  984. // Set the install level for a full product installation (not a feature request)
  985. // Setting the value to 0 initialized components and features to the default level
  986. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  987. function MsiSetInstallLevel(hInstall: MSIHANDLE; iInstallLevel: Integer): UINT; stdcall;
  988. {$EXTERNALSYM MsiSetInstallLevel}
  989. // Get the valid install states for a feature, represented by bit flags
  990. // For each valid install state, a bit is set of value: (1 << INSTALLSTATE)
  991. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  992. function MsiGetFeatureValidStatesA(hInstall: MSIHANDLE; szFeature: LPCSTR;
  993.   var dwInstallStates: DWORD): UINT; stdcall;
  994. {$EXTERNALSYM MsiGetFeatureValidStatesA}
  995. function MsiGetFeatureValidStatesW(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  996.   var dwInstallStates: DWORD): UINT; stdcall;
  997. {$EXTERNALSYM MsiGetFeatureValidStatesW}
  998. {$IFDEF UNICODE}
  999. function MsiGetFeatureValidStates(hInstall: MSIHANDLE; szFeature: LPCWSTR;
  1000.   var dwInstallStates: DWORD): UINT; stdcall;
  1001. {$EXTERNALSYM MsiGetFeatureValidStates}
  1002. {$ELSE}
  1003. function MsiGetFeatureValidStates(hInstall: MSIHANDLE; szFeature: LPCSTR;
  1004.   var dwInstallStates: DWORD): UINT; stdcall;
  1005. {$EXTERNALSYM MsiGetFeatureValidStates}
  1006. {$ENDIF}
  1007. // Return the full source path for a folder in the Directory table
  1008. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  1009. function MsiGetSourcePathA(hInstall: MSIHANDLE; szFolder: LPCSTR; szPathBuf: LPSTR;
  1010.   var pcchPathBuf: DWORD): UINT; stdcall;
  1011. {$EXTERNALSYM MsiGetSourcePathA}
  1012. function MsiGetSourcePathW(hInstall: MSIHANDLE; szFolder: LPCWSTR; szPathBuf: LPWSTR;
  1013.   var pcchPathBuf: DWORD): UINT; stdcall;
  1014. {$EXTERNALSYM MsiGetSourcePathW}
  1015. {$IFDEF UNICODE}
  1016. function MsiGetSourcePath(hInstall: MSIHANDLE; szFolder: LPCWSTR; szPathBuf: LPWSTR;
  1017.   var pcchPathBuf: DWORD): UINT; stdcall;
  1018. {$EXTERNALSYM MsiGetSourcePath}
  1019. {$ELSE}
  1020. function MsiGetSourcePath(hInstall: MSIHANDLE; szFolder: LPCSTR; szPathBuf: LPSTR;
  1021.   var pcchPathBuf: DWORD): UINT; stdcall;
  1022. {$EXTERNALSYM MsiGetSourcePath}
  1023. {$ENDIF}
  1024. // Return the full target path for a folder in the Directory table
  1025. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  1026. function MsiGetTargetPathA(hInstall: MSIHANDLE; szFolder: LPCSTR;
  1027.   szPathBuf: LPSTR; var pcchPathBuf: DWORD): UINT; stdcall;
  1028. {$EXTERNALSYM MsiGetTargetPathA}
  1029. function MsiGetTargetPathW(hInstall: MSIHANDLE; szFolder: LPCWSTR;
  1030.   szPathBuf: LPWSTR; var pcchPathBuf: DWORD): UINT; stdcall;
  1031. {$EXTERNALSYM MsiGetTargetPathW}
  1032. {$IFDEF UNICODE}
  1033. function MsiGetTargetPath(hInstall: MSIHANDLE; szFolder: LPCWSTR;
  1034.   szPathBuf: LPWSTR; var pcchPathBuf: DWORD): UINT; stdcall;
  1035. {$EXTERNALSYM MsiGetTargetPath}
  1036. {$ELSE}
  1037. function MsiGetTargetPath(hInstall: MSIHANDLE; szFolder: LPCSTR;
  1038.   szPathBuf: LPSTR; var pcchPathBuf: DWORD): UINT; stdcall;
  1039. {$EXTERNALSYM MsiGetTargetPath}
  1040. {$ENDIF}
  1041. // Set the full target path for a folder in the Directory table
  1042. // Execution of this function sets the error record, accessible via MsiGetLastErrorRecord
  1043. function MsiSetTargetPathA(hInstall: MSIHANDLE; szFolder: LPCSTR;
  1044.   szFolderPath: LPCSTR): UINT; stdcall;
  1045. {$EXTERNALSYM MsiSetTargetPathA}
  1046. function MsiSetTargetPathW(hInstall: MSIHANDLE; szFolder: LPCWSTR;
  1047.   szFolderPath: LPCWSTR): UINT; stdcall;
  1048. {$EXTERNALSYM MsiSetTargetPathW}
  1049. {$IFDEF UNICODE}
  1050. function MsiSetTargetPath(hInstall: MSIHANDLE; szFolder: LPCWSTR;
  1051.   szFolderPath: LPCWSTR): UINT; stdcall;
  1052. {$EXTERNALSYM MsiSetTargetPath}
  1053. {$ELSE}
  1054. function MsiSetTargetPath(hInstall: MSIHANDLE; szFolder: LPCSTR;
  1055.   szFolderPath: LPCSTR): UINT; stdcall;
  1056. {$EXTERNALSYM MsiSetTargetPath}
  1057. {$ENDIF}
  1058. // Check to see if sufficent disk space is present for the current installation
  1059. // Returns ERROR_SUCCESS, ERROR_DISK_FULL, ERROR_INVALID_HANDLE_STATE, or ERROR_INVALID_HANDLE
  1060. function MsiVerifyDiskSpace(hInstall: MSIHANDLE): UINT; stdcall;
  1061. {$EXTERNALSYM MsiVerifyDiskSpace}
  1062. // --------------------------------------------------------------------------
  1063. // Functions for rendering UI dialogs from the database representations.
  1064. // Purpose is for product development, not for use during installation.
  1065. // --------------------------------------------------------------------------
  1066. // Enable UI in preview mode to facilitate authoring of UI dialogs.
  1067. // The preview mode will end when the handle is closed.
  1068. function MsiEnableUIPreview(hDatabase: MSIHANDLE; var phPreview: MSIHANDLE): UINT; stdcall;
  1069. {$EXTERNALSYM MsiEnableUIPreview}
  1070. // Display any UI dialog as modeless and inactive.
  1071. // Supplying a null name will remove any current dialog.
  1072. function MsiPreviewDialogA(hPreview: MSIHANDLE; szDialogName: LPCSTR): UINT; stdcall;
  1073. {$EXTERNALSYM MsiPreviewDialogA}
  1074. function MsiPreviewDialogW(hPreview: MSIHANDLE; szDialogName: LPCWSTR): UINT; stdcall;
  1075. {$EXTERNALSYM MsiPreviewDialogW}
  1076. {$IFDEF UNICODE}
  1077. function MsiPreviewDialog(hPreview: MSIHANDLE; szDialogName: LPCWSTR): UINT; stdcall;
  1078. {$EXTERNALSYM MsiPreviewDialog}
  1079. {$ELSE}
  1080. function MsiPreviewDialog(hPreview: MSIHANDLE; szDialogName: LPCSTR): UINT; stdcall;
  1081. {$EXTERNALSYM MsiPreviewDialog}
  1082. {$ENDIF}
  1083. // Display a billboard within a host control in the displayed dialog.
  1084. // Supplying a null billboard name will remove any billboard displayed.
  1085. function MsiPreviewBillboardA(hPreview: MSIHANDLE; szControlName: LPCSTR;
  1086.   szBillboard: LPCSTR): UINT; stdcall;
  1087. {$EXTERNALSYM MsiPreviewBillboardA}
  1088. function MsiPreviewBillboardW(hPreview: MSIHANDLE; szControlName: LPCWSTR;
  1089.   szBillboard: LPCWSTR): UINT; stdcall;
  1090. {$EXTERNALSYM MsiPreviewBillboardW}
  1091. {$IFDEF UNICODE}
  1092. function MsiPreviewBillboard(hPreview: MSIHANDLE; szControlName: LPCWSTR;
  1093.   szBillboard: LPCWSTR): UINT; stdcall;
  1094. {$EXTERNALSYM MsiPreviewBillboard}
  1095. {$ELSE}
  1096. function MsiPreviewBillboard(hPreview: MSIHANDLE; szControlName: LPCSTR;
  1097.   szBillboard: LPCSTR): UINT; stdcall;
  1098. {$EXTERNALSYM MsiPreviewBillboard}
  1099. {$ENDIF}
  1100. // --------------------------------------------------------------------------
  1101. // Error handling not associated with any particular object
  1102. // --------------------------------------------------------------------------
  1103. // Return a record handle to the last function that generated an error record
  1104. // Only specified functions will set the error record, or clear it if success
  1105. // Field 1 of the record will contain the internal MSI error code
  1106. // Other fields will contain data specific to the particular error
  1107. // The error record is released internally after this function is executed
  1108. function MsiGetLastErrorRecord: MSIHANDLE; stdcall;
  1109. {$EXTERNALSYM MsiGetLastErrorRecord}
  1110. implementation
  1111. const
  1112.   msilib = 'msi.dll';
  1113. {$IFDEF DYNAMIC_LINK}
  1114. var
  1115.   _MsiDatabaseOpenViewA: Pointer;
  1116. function MsiDatabaseOpenViewA;
  1117. begin
  1118.   GetProcedureAddress(_MsiDatabaseOpenViewA, msilib, 'MsiDatabaseOpenViewA');
  1119.   asm
  1120.     mov esp, ebp
  1121.     pop ebp
  1122.     jmp [_MsiDatabaseOpenViewA]
  1123.   end;
  1124. end;
  1125. {$ELSE}
  1126. function MsiDatabaseOpenViewA; external msilib name 'MsiDatabaseOpenViewA';
  1127. {$ENDIF DYNAMIC_LINK}
  1128. {$IFDEF DYNAMIC_LINK}
  1129. var
  1130.   _MsiDatabaseOpenViewW: Pointer;
  1131. function MsiDatabaseOpenViewW;
  1132. begin
  1133.   GetProcedureAddress(_MsiDatabaseOpenViewW, msilib, 'MsiDatabaseOpenViewW');
  1134.   asm
  1135.     mov esp, ebp
  1136.     pop ebp
  1137.     jmp [_MsiDatabaseOpenViewW]
  1138.   end;
  1139. end;
  1140. {$ELSE}
  1141. function MsiDatabaseOpenViewW; external msilib name 'MsiDatabaseOpenViewW';
  1142. {$ENDIF DYNAMIC_LINK}
  1143. {$IFDEF UNICODE}
  1144. {$IFDEF DYNAMIC_LINK}
  1145. var
  1146.   _MsiDatabaseOpenView: Pointer;
  1147. function MsiDatabaseOpenView;
  1148. begin
  1149.   GetProcedureAddress(_MsiDatabaseOpenView, msilib, 'MsiDatabaseOpenViewW');
  1150.   asm
  1151.     mov esp, ebp
  1152.     pop ebp
  1153.     jmp [_MsiDatabaseOpenView]
  1154.   end;
  1155. end;
  1156. {$ELSE}
  1157. function MsiDatabaseOpenView; external msilib name 'MsiDatabaseOpenViewW';
  1158. {$ENDIF DYNAMIC_LINK}
  1159. {$ELSE}
  1160. {$IFDEF DYNAMIC_LINK}
  1161. var
  1162.   _MsiDatabaseOpenView: Pointer;
  1163. function MsiDatabaseOpenView;
  1164. begin
  1165.   GetProcedureAddress(_MsiDatabaseOpenView, msilib, 'MsiDatabaseOpenViewA');
  1166.   asm
  1167.     mov esp, ebp
  1168.     pop ebp
  1169.     jmp [_MsiDatabaseOpenView]
  1170.   end;
  1171. end;
  1172. {$ELSE}
  1173. function MsiDatabaseOpenView; external msilib name 'MsiDatabaseOpenViewA';
  1174. {$ENDIF DYNAMIC_LINK}
  1175. {$ENDIF}
  1176. {$IFDEF DYNAMIC_LINK}
  1177. var
  1178.   _MsiViewGetErrorA: Pointer;
  1179. function MsiViewGetErrorA;
  1180. begin
  1181.   GetProcedureAddress(_MsiViewGetErrorA, msilib, 'MsiViewGetErrorA');
  1182.   asm
  1183.     mov esp, ebp
  1184.     pop ebp
  1185.     jmp [_MsiViewGetErrorA]
  1186.   end;
  1187. end;
  1188. {$ELSE}
  1189. function MsiViewGetErrorA; external msilib name 'MsiViewGetErrorA';
  1190. {$ENDIF DYNAMIC_LINK}
  1191. {$IFDEF DYNAMIC_LINK}
  1192. var
  1193.   _MsiViewGetErrorW: Pointer;
  1194. function MsiViewGetErrorW;
  1195. begin
  1196.   GetProcedureAddress(_MsiViewGetErrorW, msilib, 'MsiViewGetErrorW');
  1197.   asm
  1198.     mov esp, ebp
  1199.     pop ebp
  1200.     jmp [_MsiViewGetErrorW]
  1201.   end;
  1202. end;
  1203. {$ELSE}
  1204. function MsiViewGetErrorW; external msilib name 'MsiViewGetErrorW';
  1205. {$ENDIF DYNAMIC_LINK}
  1206. {$IFDEF UNICODE}
  1207. {$IFDEF DYNAMIC_LINK}
  1208. var
  1209.   _MsiViewGetError: Pointer;
  1210. function MsiViewGetError;
  1211. begin
  1212.   GetProcedureAddress(_MsiViewGetError, msilib, 'MsiViewGetErrorW');
  1213.   asm
  1214.     mov esp, ebp
  1215.     pop ebp
  1216.     jmp [_MsiViewGetError]
  1217.   end;
  1218. end;
  1219. {$ELSE}
  1220. function MsiViewGetError; external msilib name 'MsiViewGetErrorW';
  1221. {$ENDIF DYNAMIC_LINK}
  1222. {$ELSE}
  1223. {$IFDEF DYNAMIC_LINK}
  1224. var
  1225.   _MsiViewGetError: Pointer;
  1226. function MsiViewGetError;
  1227. begin
  1228.   GetProcedureAddress(_MsiViewGetError, msilib, 'MsiViewGetErrorA');
  1229.   asm
  1230.     mov esp, ebp
  1231.     pop ebp
  1232.     jmp [_MsiViewGetError]
  1233.   end;
  1234. end;
  1235. {$ELSE}
  1236. function MsiViewGetError; external msilib name 'MsiViewGetErrorA';
  1237. {$ENDIF DYNAMIC_LINK}
  1238. {$ENDIF}
  1239. {$IFDEF DYNAMIC_LINK}
  1240. var
  1241.   _MsiViewExecute: Pointer;
  1242. function MsiViewExecute;
  1243. begin
  1244.   GetProcedureAddress(_MsiViewExecute, msilib, 'MsiViewExecute');
  1245.   asm
  1246.     mov esp, ebp
  1247.     pop ebp
  1248.     jmp [_MsiViewExecute]
  1249.   end;
  1250. end;
  1251. {$ELSE}
  1252. function MsiViewExecute; external msilib name 'MsiViewExecute';
  1253. {$ENDIF DYNAMIC_LINK}
  1254. {$IFDEF DYNAMIC_LINK}
  1255. var
  1256.   _MsiViewFetch: Pointer;
  1257. function MsiViewFetch;
  1258. begin
  1259.   GetProcedureAddress(_MsiViewFetch, msilib, 'MsiViewFetch');
  1260.   asm
  1261.     mov esp, ebp
  1262.     pop ebp
  1263.     jmp [_MsiViewFetch]
  1264.   end;
  1265. end;
  1266. {$ELSE}
  1267. function MsiViewFetch; external msilib name 'MsiViewFetch';
  1268. {$ENDIF DYNAMIC_LINK}
  1269. {$IFDEF DYNAMIC_LINK}
  1270. var
  1271.   _MsiViewModify: Pointer;
  1272. function MsiViewModify;
  1273. begin
  1274.   GetProcedureAddress(_MsiViewModify, msilib, 'MsiViewModify');
  1275.   asm
  1276.     mov esp, ebp
  1277.     pop ebp
  1278.     jmp [_MsiViewModify]
  1279.   end;
  1280. end;
  1281. {$ELSE}
  1282. function MsiViewModify; external msilib name 'MsiViewModify';
  1283. {$ENDIF DYNAMIC_LINK}
  1284. {$IFDEF DYNAMIC_LINK}
  1285. var
  1286.   _MsiViewGetColumnInfo: Pointer;
  1287. function MsiViewGetColumnInfo;
  1288. begin
  1289.   GetProcedureAddress(_MsiViewGetColumnInfo, msilib, 'MsiViewGetColumnInfo');
  1290.   asm
  1291.     mov esp, ebp
  1292.     pop ebp
  1293.     jmp [_MsiViewGetColumnInfo]
  1294.   end;
  1295. end;
  1296. {$ELSE}
  1297. function MsiViewGetColumnInfo; external msilib name 'MsiViewGetColumnInfo';
  1298. {$ENDIF DYNAMIC_LINK}
  1299. {$IFDEF DYNAMIC_LINK}
  1300. var
  1301.   _MsiViewClose: Pointer;
  1302. function MsiViewClose;
  1303. begin
  1304.   GetProcedureAddress(_MsiViewClose, msilib, 'MsiViewClose');
  1305.   asm
  1306.     mov esp, ebp
  1307.     pop ebp
  1308.     jmp [_MsiViewClose]
  1309.   end;
  1310. end;
  1311. {$ELSE}
  1312. function MsiViewClose; external msilib name 'MsiViewClose';
  1313. {$ENDIF DYNAMIC_LINK}
  1314. {$IFDEF DYNAMIC_LINK}
  1315. var
  1316.   _MsiDatabaseGetPrimaryKeysA: Pointer;
  1317. function MsiDatabaseGetPrimaryKeysA;
  1318. begin
  1319.   GetProcedureAddress(_MsiDatabaseGetPrimaryKeysA, msilib, 'MsiDatabaseGetPrimaryKeysA');
  1320.   asm
  1321.     mov esp, ebp
  1322.     pop ebp
  1323.     jmp [_MsiDatabaseGetPrimaryKeysA]
  1324.   end;
  1325. end;
  1326. {$ELSE}
  1327. function MsiDatabaseGetPrimaryKeysA; external msilib name 'MsiDatabaseGetPrimaryKeysA';
  1328. {$ENDIF DYNAMIC_LINK}
  1329. {$IFDEF DYNAMIC_LINK}
  1330. var
  1331.   _MsiDatabaseGetPrimaryKeysW: Pointer;
  1332. function MsiDatabaseGetPrimaryKeysW;
  1333. begin
  1334.   GetProcedureAddress(_MsiDatabaseGetPrimaryKeysW, msilib, 'MsiDatabaseGetPrimaryKeysW');
  1335.   asm
  1336.     mov esp, ebp
  1337.     pop ebp
  1338.     jmp [_MsiDatabaseGetPrimaryKeysW]
  1339.   end;
  1340. end;
  1341. {$ELSE}
  1342. function MsiDatabaseGetPrimaryKeysW; external msilib name 'MsiDatabaseGetPrimaryKeysW';
  1343. {$ENDIF DYNAMIC_LINK}
  1344. {$IFDEF UNICODE}
  1345. {$IFDEF DYNAMIC_LINK}
  1346. var
  1347.   _MsiDatabaseGetPrimaryKeys: Pointer;
  1348. function MsiDatabaseGetPrimaryKeys;
  1349. begin
  1350.   GetProcedureAddress(_MsiDatabaseGetPrimaryKeys, msilib, 'MsiDatabaseGetPrimaryKeysW');
  1351.   asm
  1352.     mov esp, ebp
  1353.     pop ebp
  1354.     jmp [_MsiDatabaseGetPrimaryKeys]
  1355.   end;
  1356. end;
  1357. {$ELSE}
  1358. function MsiDatabaseGetPrimaryKeys; external msilib name 'MsiDatabaseGetPrimaryKeysW';
  1359. {$ENDIF DYNAMIC_LINK}
  1360. {$ELSE}
  1361. {$IFDEF DYNAMIC_LINK}
  1362. var
  1363.   _MsiDatabaseGetPrimaryKeys: Pointer;
  1364. function MsiDatabaseGetPrimaryKeys;
  1365. begin
  1366.   GetProcedureAddress(_MsiDatabaseGetPrimaryKeys, msilib, 'MsiDatabaseGetPrimaryKeysA');
  1367.   asm
  1368.     mov esp, ebp
  1369.     pop ebp
  1370.     jmp [_MsiDatabaseGetPrimaryKeys]
  1371.   end;
  1372. end;
  1373. {$ELSE}
  1374. function MsiDatabaseGetPrimaryKeys; external msilib name 'MsiDatabaseGetPrimaryKeysA';
  1375. {$ENDIF DYNAMIC_LINK}
  1376. {$ENDIF}
  1377. {$IFDEF DYNAMIC_LINK}
  1378. var
  1379.   _MsiDatabaseIsTablePersistentA: Pointer;
  1380. function MsiDatabaseIsTablePersistentA;
  1381. begin
  1382.   GetProcedureAddress(_MsiDatabaseIsTablePersistentA, msilib, 'MsiDatabaseIsTablePersistentA');
  1383.   asm
  1384.     mov esp, ebp
  1385.     pop ebp
  1386.     jmp [_MsiDatabaseIsTablePersistentA]
  1387.   end;
  1388. end;
  1389. {$ELSE}
  1390. function MsiDatabaseIsTablePersistentA; external msilib name 'MsiDatabaseIsTablePersistentA';
  1391. {$ENDIF DYNAMIC_LINK}
  1392. {$IFDEF DYNAMIC_LINK}
  1393. var
  1394.   _MsiDatabaseIsTablePersistentW: Pointer;
  1395. function MsiDatabaseIsTablePersistentW;
  1396. begin
  1397.   GetProcedureAddress(_MsiDatabaseIsTablePersistentW, msilib, 'MsiDatabaseIsTablePersistentW');
  1398.   asm
  1399.     mov esp, ebp
  1400.     pop ebp
  1401.     jmp [_MsiDatabaseIsTablePersistentW]
  1402.   end;
  1403. end;
  1404. {$ELSE}
  1405. function MsiDatabaseIsTablePersistentW; external msilib name 'MsiDatabaseIsTablePersistentW';
  1406. {$ENDIF DYNAMIC_LINK}
  1407. {$IFDEF UNICODE}
  1408. {$IFDEF DYNAMIC_LINK}
  1409. var
  1410.   _MsiDatabaseIsTablePersistent: Pointer;
  1411. function MsiDatabaseIsTablePersistent;
  1412. begin
  1413.   GetProcedureAddress(_MsiDatabaseIsTablePersistent, msilib, 'MsiDatabaseIsTablePersistentW');
  1414.   asm
  1415.     mov esp, ebp
  1416.     pop ebp
  1417.     jmp [_MsiDatabaseIsTablePersistent]
  1418.   end;
  1419. end;
  1420. {$ELSE}
  1421. function MsiDatabaseIsTablePersistent; external msilib name 'MsiDatabaseIsTablePersistentW';
  1422. {$ENDIF DYNAMIC_LINK}
  1423. {$ELSE}
  1424. {$IFDEF DYNAMIC_LINK}
  1425. var
  1426.   _MsiDatabaseIsTablePersistent: Pointer;
  1427. function MsiDatabaseIsTablePersistent;
  1428. begin
  1429.   GetProcedureAddress(_MsiDatabaseIsTablePersistent, msilib, 'MsiDatabaseIsTablePersistentA');
  1430.   asm
  1431.     mov esp, ebp
  1432.     pop ebp
  1433.     jmp [_MsiDatabaseIsTablePersistent]
  1434.   end;
  1435. end;
  1436. {$ELSE}
  1437. function MsiDatabaseIsTablePersistent; external msilib name 'MsiDatabaseIsTablePersistentA';
  1438. {$ENDIF DYNAMIC_LINK}
  1439. {$ENDIF}
  1440. {$IFDEF DYNAMIC_LINK}
  1441. var
  1442.   _MsiGetSummaryInformationA: Pointer;
  1443. function MsiGetSummaryInformationA;
  1444. begin
  1445.   GetProcedureAddress(_MsiGetSummaryInformationA, msilib, 'MsiGetSummaryInformationA');
  1446.   asm
  1447.     mov esp, ebp
  1448.     pop ebp
  1449.     jmp [_MsiGetSummaryInformationA]
  1450.   end;
  1451. end;
  1452. {$ELSE}
  1453. function MsiGetSummaryInformationA; external msilib name 'MsiGetSummaryInformationA';
  1454. {$ENDIF DYNAMIC_LINK}
  1455. {$IFDEF DYNAMIC_LINK}
  1456. var
  1457.   _MsiGetSummaryInformationW: Pointer;
  1458. function MsiGetSummaryInformationW;
  1459. begin
  1460.   GetProcedureAddress(_MsiGetSummaryInformationW, msilib, 'MsiGetSummaryInformationW');
  1461.   asm
  1462.     mov esp, ebp
  1463.     pop ebp
  1464.     jmp [_MsiGetSummaryInformationW]
  1465.   end;
  1466. end;
  1467. {$ELSE}
  1468. function MsiGetSummaryInformationW; external msilib name 'MsiGetSummaryInformationW';
  1469. {$ENDIF DYNAMIC_LINK}
  1470. {$IFDEF UNICODE}
  1471. {$IFDEF DYNAMIC_LINK}
  1472. var
  1473.   _MsiGetSummaryInformation: Pointer;
  1474. function MsiGetSummaryInformation;
  1475. begin
  1476.   GetProcedureAddress(_MsiGetSummaryInformation, msilib, 'MsiGetSummaryInformationW');
  1477.   asm
  1478.     mov esp, ebp
  1479.     pop ebp
  1480.     jmp [_MsiGetSummaryInformation]
  1481.   end;
  1482. end;
  1483. {$ELSE}
  1484. function MsiGetSummaryInformation; external msilib name 'MsiGetSummaryInformationW';
  1485. {$ENDIF DYNAMIC_LINK}
  1486. {$ELSE}
  1487. {$IFDEF DYNAMIC_LINK}
  1488. var
  1489.   _MsiGetSummaryInformation: Pointer;
  1490. function MsiGetSummaryInformation;
  1491. begin
  1492.   GetProcedureAddress(_MsiGetSummaryInformation, msilib, 'MsiGetSummaryInformationA');
  1493.   asm
  1494.     mov esp, ebp
  1495.     pop ebp
  1496.     jmp [_MsiGetSummaryInformation]
  1497.   end;
  1498. end;
  1499. {$ELSE}
  1500. function MsiGetSummaryInformation; external msilib name 'MsiGetSummaryInformationA';
  1501. {$ENDIF DYNAMIC_LINK}
  1502. {$ENDIF}
  1503. {$IFDEF DYNAMIC_LINK}
  1504. var
  1505.   _MsiSummaryInfoGetPropertyCount: Pointer;
  1506. function MsiSummaryInfoGetPropertyCount;
  1507. begin
  1508.   GetProcedureAddress(_MsiSummaryInfoGetPropertyCount, msilib, 'MsiSummaryInfoGetPropertyCount');
  1509.   asm
  1510.     mov esp, ebp
  1511.     pop ebp
  1512.     jmp [_MsiSummaryInfoGetPropertyCount]
  1513.   end;
  1514. end;
  1515. {$ELSE}
  1516. function MsiSummaryInfoGetPropertyCount; external msilib name 'MsiSummaryInfoGetPropertyCount';
  1517. {$ENDIF DYNAMIC_LINK}
  1518. {$IFDEF DYNAMIC_LINK}
  1519. var
  1520.   _MsiSummaryInfoSetPropertyA: Pointer;
  1521. function MsiSummaryInfoSetPropertyA;
  1522. begin
  1523.   GetProcedureAddress(_MsiSummaryInfoSetPropertyA, msilib, 'MsiSummaryInfoSetPropertyA');
  1524.   asm
  1525.     mov esp, ebp
  1526.     pop ebp
  1527.     jmp [_MsiSummaryInfoSetPropertyA]
  1528.   end;
  1529. end;
  1530. {$ELSE}
  1531. function MsiSummaryInfoSetPropertyA; external msilib name 'MsiSummaryInfoSetPropertyA';
  1532. {$ENDIF DYNAMIC_LINK}
  1533. {$IFDEF DYNAMIC_LINK}
  1534. var
  1535.   _MsiSummaryInfoSetPropertyW: Pointer;
  1536. function MsiSummaryInfoSetPropertyW;
  1537. begin
  1538.   GetProcedureAddress(_MsiSummaryInfoSetPropertyW, msilib, 'MsiSummaryInfoSetPropertyW');
  1539.   asm
  1540.     mov esp, ebp
  1541.     pop ebp
  1542.     jmp [_MsiSummaryInfoSetPropertyW]
  1543.   end;
  1544. end;
  1545. {$ELSE}
  1546. function MsiSummaryInfoSetPropertyW; external msilib name 'MsiSummaryInfoSetPropertyW';
  1547. {$ENDIF DYNAMIC_LINK}
  1548. {$IFDEF UNICODE}
  1549. {$IFDEF DYNAMIC_LINK}
  1550. var
  1551.   _MsiSummaryInfoSetProperty: Pointer;
  1552. function MsiSummaryInfoSetProperty;
  1553. begin
  1554.   GetProcedureAddress(_MsiSummaryInfoSetProperty, msilib, 'MsiSummaryInfoSetPropertyW');
  1555.   asm
  1556.     mov esp, ebp
  1557.     pop ebp
  1558.     jmp [_MsiSummaryInfoSetProperty]
  1559.   end;
  1560. end;
  1561. {$ELSE}
  1562. function MsiSummaryInfoSetProperty; external msilib name 'MsiSummaryInfoSetPropertyW';
  1563. {$ENDIF DYNAMIC_LINK}
  1564. {$ELSE}
  1565. {$IFDEF DYNAMIC_LINK}
  1566. var
  1567.   _MsiSummaryInfoSetProperty: Pointer;
  1568. function MsiSummaryInfoSetProperty;
  1569. begin
  1570.   GetProcedureAddress(_MsiSummaryInfoSetProperty, msilib, 'MsiSummaryInfoSetPropertyA');
  1571.   asm
  1572.     mov esp, ebp
  1573.     pop ebp
  1574.     jmp [_MsiSummaryInfoSetProperty]
  1575.   end;
  1576. end;
  1577. {$ELSE}
  1578. function MsiSummaryInfoSetProperty; external msilib name 'MsiSummaryInfoSetPropertyA';
  1579. {$ENDIF DYNAMIC_LINK}
  1580. {$ENDIF}
  1581. {$IFDEF DYNAMIC_LINK}
  1582. var
  1583.   _MsiSummaryInfoGetPropertyA: Pointer;
  1584. function MsiSummaryInfoGetPropertyA;
  1585. begin
  1586.   GetProcedureAddress(_MsiSummaryInfoGetPropertyA, msilib, 'MsiSummaryInfoGetPropertyA');
  1587.   asm
  1588.     mov esp, ebp
  1589.     pop ebp
  1590.     jmp [_MsiSummaryInfoGetPropertyA]
  1591.   end;
  1592. end;
  1593. {$ELSE}
  1594. function MsiSummaryInfoGetPropertyA; external msilib name 'MsiSummaryInfoGetPropertyA';
  1595. {$ENDIF DYNAMIC_LINK}
  1596. {$IFDEF DYNAMIC_LINK}
  1597. var
  1598.   _MsiSummaryInfoGetPropertyW: Pointer;
  1599. function MsiSummaryInfoGetPropertyW;
  1600. begin
  1601.   GetProcedureAddress(_MsiSummaryInfoGetPropertyW, msilib, 'MsiSummaryInfoGetPropertyW');
  1602.   asm
  1603.     mov esp, ebp
  1604.     pop ebp
  1605.     jmp [_MsiSummaryInfoGetPropertyW]
  1606.   end;
  1607. end;
  1608. {$ELSE}
  1609. function MsiSummaryInfoGetPropertyW; external msilib name 'MsiSummaryInfoGetPropertyW';
  1610. {$ENDIF DYNAMIC_LINK}
  1611. {$IFDEF UNICODE}
  1612. {$IFDEF DYNAMIC_LINK}
  1613. var
  1614.   _MsiSummaryInfoGetProperty: Pointer;
  1615. function MsiSummaryInfoGetProperty;
  1616. begin
  1617.   GetProcedureAddress(_MsiSummaryInfoGetProperty, msilib, 'MsiSummaryInfoGetPropertyW');
  1618.   asm
  1619.     mov esp, ebp
  1620.     pop ebp
  1621.     jmp [_MsiSummaryInfoGetProperty]
  1622.   end;
  1623. end;
  1624. {$ELSE}
  1625. function MsiSummaryInfoGetProperty; external msilib name 'MsiSummaryInfoGetPropertyW';
  1626. {$ENDIF DYNAMIC_LINK}
  1627. {$ELSE}
  1628. {$IFDEF DYNAMIC_LINK}
  1629. var
  1630.   _MsiSummaryInfoGetProperty: Pointer;
  1631. function MsiSummaryInfoGetProperty;
  1632. begin
  1633.   GetProcedureAddress(_MsiSummaryInfoGetProperty, msilib, 'MsiSummaryInfoGetPropertyA');
  1634.   asm
  1635.     mov esp, ebp
  1636.     pop ebp
  1637.     jmp [_MsiSummaryInfoGetProperty]
  1638.   end;
  1639. end;
  1640. {$ELSE}
  1641. function MsiSummaryInfoGetProperty; external msilib name 'MsiSummaryInfoGetPropertyA';
  1642. {$ENDIF DYNAMIC_LINK}
  1643. {$ENDIF}
  1644. {$IFDEF DYNAMIC_LINK}
  1645. var
  1646.   _MsiSummaryInfoPersist: Pointer;
  1647. function MsiSummaryInfoPersist;
  1648. begin
  1649.   GetProcedureAddress(_MsiSummaryInfoPersist, msilib, 'MsiSummaryInfoPersist');
  1650.   asm
  1651.     mov esp, ebp
  1652.     pop ebp
  1653.     jmp [_MsiSummaryInfoPersist]
  1654.   end;
  1655. end;
  1656. {$ELSE}
  1657. function MsiSummaryInfoPersist; external msilib name 'MsiSummaryInfoPersist';
  1658. {$ENDIF DYNAMIC_LINK}
  1659. {$IFDEF DYNAMIC_LINK}
  1660. var
  1661.   _MsiOpenDatabaseA: Pointer;
  1662. function MsiOpenDatabaseA;
  1663. begin
  1664.   GetProcedureAddress(_MsiOpenDatabaseA, msilib, 'MsiOpenDatabaseA');
  1665.   asm
  1666.     mov esp, ebp
  1667.     pop ebp
  1668.     jmp [_MsiOpenDatabaseA]
  1669.   end;
  1670. end;
  1671. {$ELSE}
  1672. function MsiOpenDatabaseA; external msilib name 'MsiOpenDatabaseA';
  1673. {$ENDIF DYNAMIC_LINK}
  1674. {$IFDEF DYNAMIC_LINK}
  1675. var
  1676.   _MsiOpenDatabaseW: Pointer;
  1677. function MsiOpenDatabaseW;
  1678. begin
  1679.   GetProcedureAddress(_MsiOpenDatabaseW, msilib, 'MsiOpenDatabaseW');
  1680.   asm
  1681.     mov esp, ebp
  1682.     pop ebp
  1683.     jmp [_MsiOpenDatabaseW]
  1684.   end;
  1685. end;
  1686. {$ELSE}
  1687. function MsiOpenDatabaseW; external msilib name 'MsiOpenDatabaseW';
  1688. {$ENDIF DYNAMIC_LINK}
  1689. {$IFDEF UNICODE}
  1690. {$IFDEF DYNAMIC_LINK}
  1691. var
  1692.   _MsiOpenDatabase: Pointer;
  1693. function MsiOpenDatabase;
  1694. begin
  1695.   GetProcedureAddress(_MsiOpenDatabase, msilib, 'MsiOpenDatabaseW');
  1696.   asm
  1697.     mov esp, ebp
  1698.     pop ebp
  1699.     jmp [_MsiOpenDatabase]
  1700.   end;
  1701. end;
  1702. {$ELSE}
  1703. function MsiOpenDatabase; external msilib name 'MsiOpenDatabaseW';
  1704. {$ENDIF DYNAMIC_LINK}
  1705. {$ELSE}
  1706. {$IFDEF DYNAMIC_LINK}
  1707. var
  1708.   _MsiOpenDatabase: Pointer;
  1709. function MsiOpenDatabase;
  1710. begin
  1711.   GetProcedureAddress(_MsiOpenDatabase, msilib, 'MsiOpenDatabaseA');
  1712.   asm
  1713.     mov esp, ebp
  1714.     pop ebp
  1715.     jmp [_MsiOpenDatabase]
  1716.   end;
  1717. end;
  1718. {$ELSE}
  1719. function MsiOpenDatabase; external msilib name 'MsiOpenDatabaseA';
  1720. {$ENDIF DYNAMIC_LINK}
  1721. {$ENDIF}
  1722. {$IFDEF DYNAMIC_LINK}
  1723. var
  1724.   _MsiDatabaseImportA: Pointer;
  1725. function MsiDatabaseImportA;
  1726. begin
  1727.   GetProcedureAddress(_MsiDatabaseImportA, msilib, 'MsiDatabaseImportA');
  1728.   asm
  1729.     mov esp, ebp
  1730.     pop ebp
  1731.     jmp [_MsiDatabaseImportA]
  1732.   end;
  1733. end;
  1734. {$ELSE}
  1735. function MsiDatabaseImportA; external msilib name 'MsiDatabaseImportA';
  1736. {$ENDIF DYNAMIC_LINK}
  1737. {$IFDEF DYNAMIC_LINK}
  1738. var
  1739.   _MsiDatabaseImportW: Pointer;
  1740. function MsiDatabaseImportW;
  1741. begin
  1742.   GetProcedureAddress(_MsiDatabaseImportW, msilib, 'MsiDatabaseImportW');
  1743.   asm
  1744.     mov esp, ebp
  1745.     pop ebp
  1746.     jmp [_MsiDatabaseImportW]
  1747.   end;
  1748. end;
  1749. {$ELSE}
  1750. function MsiDatabaseImportW; external msilib name 'MsiDatabaseImportW';
  1751. {$ENDIF DYNAMIC_LINK}
  1752. {$IFDEF UNICODE}
  1753. {$IFDEF DYNAMIC_LINK}
  1754. var
  1755.   _MsiDatabaseImport: Pointer;
  1756. function MsiDatabaseImport;
  1757. begin
  1758.   GetProcedureAddress(_MsiDatabaseImport, msilib, 'MsiDatabaseImportW');
  1759.   asm
  1760.     mov esp, ebp
  1761.     pop ebp
  1762.     jmp [_MsiDatabaseImport]
  1763.   end;
  1764. end;
  1765. {$ELSE}
  1766. function MsiDatabaseImport; external msilib name 'MsiDatabaseImportW';
  1767. {$ENDIF DYNAMIC_LINK}
  1768. {$ELSE}
  1769. {$IFDEF DYNAMIC_LINK}
  1770. var
  1771.   _MsiDatabaseImport: Pointer;
  1772. function MsiDatabaseImport;
  1773. begin
  1774.   GetProcedureAddress(_MsiDatabaseImport, msilib, 'MsiDatabaseImportA');
  1775.   asm
  1776.     mov esp, ebp
  1777.     pop ebp
  1778.     jmp [_MsiDatabaseImport]
  1779.   end;
  1780. end;
  1781. {$ELSE}
  1782. function MsiDatabaseImport; external msilib name 'MsiDatabaseImportA';
  1783. {$ENDIF DYNAMIC_LINK}
  1784. {$ENDIF}
  1785. {$IFDEF DYNAMIC_LINK}
  1786. var
  1787.   _MsiDatabaseExportA: Pointer;
  1788. function MsiDatabaseExportA;
  1789. begin
  1790.   GetProcedureAddress(_MsiDatabaseExportA, msilib, 'MsiDatabaseExportA');
  1791.   asm
  1792.     mov esp, ebp
  1793.     pop ebp
  1794.     jmp [_MsiDatabaseExportA]
  1795.   end;
  1796. end;
  1797. {$ELSE}
  1798. function MsiDatabaseExportA; external msilib name 'MsiDatabaseExportA';
  1799. {$ENDIF DYNAMIC_LINK}
  1800. {$IFDEF DYNAMIC_LINK}
  1801. var
  1802.   _MsiDatabaseExportW: Pointer;
  1803. function MsiDatabaseExportW;
  1804. begin
  1805.   GetProcedureAddress(_MsiDatabaseExportW, msilib, 'MsiDatabaseExportW');
  1806.   asm
  1807.     mov esp, ebp
  1808.     pop ebp
  1809.     jmp [_MsiDatabaseExportW]
  1810.   end;
  1811. end;
  1812. {$ELSE}
  1813. function MsiDatabaseExportW; external msilib name 'MsiDatabaseExportW';
  1814. {$ENDIF DYNAMIC_LINK}
  1815. {$IFDEF UNICODE}
  1816. {$IFDEF DYNAMIC_LINK}
  1817. var
  1818.   _MsiDatabaseExport: Pointer;
  1819. function MsiDatabaseExport;
  1820. begin
  1821.   GetProcedureAddress(_MsiDatabaseExport, msilib, 'MsiDatabaseExportW');
  1822.   asm
  1823.     mov esp, ebp
  1824.     pop ebp
  1825.     jmp [_MsiDatabaseExport]
  1826.   end;
  1827. end;
  1828. {$ELSE}
  1829. function MsiDatabaseExport; external msilib name 'MsiDatabaseExportW';
  1830. {$ENDIF DYNAMIC_LINK}
  1831. {$ELSE}
  1832. {$IFDEF DYNAMIC_LINK}
  1833. var
  1834.   _MsiDatabaseExport: Pointer;
  1835. function MsiDatabaseExport;
  1836. begin
  1837.   GetProcedureAddress(_MsiDatabaseExport, msilib, 'MsiDatabaseExportA');
  1838.   asm
  1839.     mov esp, ebp
  1840.     pop ebp
  1841.     jmp [_MsiDatabaseExport]
  1842.   end;
  1843. end;
  1844. {$ELSE}
  1845. function MsiDatabaseExport; external msilib name 'MsiDatabaseExportA';
  1846. {$ENDIF DYNAMIC_LINK}
  1847. {$ENDIF}
  1848. {$IFDEF DYNAMIC_LINK}
  1849. var
  1850.   _MsiDatabaseMergeA: Pointer;
  1851. function MsiDatabaseMergeA;
  1852. begin
  1853.   GetProcedureAddress(_MsiDatabaseMergeA, msilib, 'MsiDatabaseMergeA');
  1854.   asm
  1855.     mov esp, ebp
  1856.     pop ebp
  1857.     jmp [_MsiDatabaseMergeA]
  1858.   end;
  1859. end;
  1860. {$ELSE}
  1861. function MsiDatabaseMergeA; external msilib name 'MsiDatabaseMergeA';
  1862. {$ENDIF DYNAMIC_LINK}
  1863. {$IFDEF DYNAMIC_LINK}
  1864. var
  1865.   _MsiDatabaseMergeW: Pointer;
  1866. function MsiDatabaseMergeW;
  1867. begin
  1868.   GetProcedureAddress(_MsiDatabaseMergeW, msilib, 'MsiDatabaseMergeW');
  1869.   asm
  1870.     mov esp, ebp
  1871.     pop ebp
  1872.     jmp [_MsiDatabaseMergeW]
  1873.   end;
  1874. end;
  1875. {$ELSE}
  1876. function MsiDatabaseMergeW; external msilib name 'MsiDatabaseMergeW';
  1877. {$ENDIF DYNAMIC_LINK}
  1878. {$IFDEF UNICODE}
  1879. {$IFDEF DYNAMIC_LINK}
  1880. var
  1881.   _MsiDatabaseMerge: Pointer;
  1882. function MsiDatabaseMerge;
  1883. begin
  1884.   GetProcedureAddress(_MsiDatabaseMerge, msilib, 'MsiDatabaseMergeW');
  1885.   asm
  1886.     mov esp, ebp
  1887.     pop ebp
  1888.     jmp [_MsiDatabaseMerge]
  1889.   end;
  1890. end;
  1891. {$ELSE}
  1892. function MsiDatabaseMerge; external msilib name 'MsiDatabaseMergeW';
  1893. {$ENDIF DYNAMIC_LINK}
  1894. {$ELSE}
  1895. {$IFDEF DYNAMIC_LINK}
  1896. var
  1897.   _MsiDatabaseMerge: Pointer;
  1898. function MsiDatabaseMerge;
  1899. begin
  1900.   GetProcedureAddress(_MsiDatabaseMerge, msilib, 'MsiDatabaseMergeA');
  1901.   asm
  1902.     mov esp, ebp
  1903.     pop ebp
  1904.     jmp [_MsiDatabaseMerge]
  1905.   end;
  1906. end;
  1907. {$ELSE}
  1908. function MsiDatabaseMerge; external msilib name 'MsiDatabaseMergeA';
  1909. {$ENDIF DYNAMIC_LINK}
  1910. {$ENDIF}
  1911. {$IFDEF DYNAMIC_LINK}
  1912. var
  1913.   _MsiDatabaseGenerateTransformA: Pointer;
  1914. function MsiDatabaseGenerateTransformA;
  1915. begin
  1916.   GetProcedureAddress(_MsiDatabaseGenerateTransformA, msilib, 'MsiDatabaseGenerateTransformA');
  1917.   asm
  1918.     mov esp, ebp
  1919.     pop ebp
  1920.     jmp [_MsiDatabaseGenerateTransformA]
  1921.   end;
  1922. end;
  1923. {$ELSE}
  1924. function MsiDatabaseGenerateTransformA; external msilib name 'MsiDatabaseGenerateTransformA';
  1925. {$ENDIF DYNAMIC_LINK}
  1926. {$IFDEF DYNAMIC_LINK}
  1927. var
  1928.   _MsiDatabaseGenerateTransformW: Pointer;
  1929. function MsiDatabaseGenerateTransformW;
  1930. begin
  1931.   GetProcedureAddress(_MsiDatabaseGenerateTransformW, msilib, 'MsiDatabaseGenerateTransformW');
  1932.   asm
  1933.     mov esp, ebp
  1934.     pop ebp
  1935.     jmp [_MsiDatabaseGenerateTransformW]
  1936.   end;
  1937. end;
  1938. {$ELSE}
  1939. function MsiDatabaseGenerateTransformW; external msilib name 'MsiDatabaseGenerateTransformW';
  1940. {$ENDIF DYNAMIC_LINK}
  1941. {$IFDEF UNICODE}
  1942. {$IFDEF DYNAMIC_LINK}
  1943. var
  1944.   _MsiDatabaseGenerateTransform: Pointer;
  1945. function MsiDatabaseGenerateTransform;
  1946. begin
  1947.   GetProcedureAddress(_MsiDatabaseGenerateTransform, msilib, 'MsiDatabaseGenerateTransformW');
  1948.   asm
  1949.     mov esp, ebp
  1950.     pop ebp
  1951.     jmp [_MsiDatabaseGenerateTransform]
  1952.   end;
  1953. end;
  1954. {$ELSE}
  1955. function MsiDatabaseGenerateTransform; external msilib name 'MsiDatabaseGenerateTransformW';
  1956. {$ENDIF DYNAMIC_LINK}
  1957. {$ELSE}
  1958. {$IFDEF DYNAMIC_LINK}
  1959. var
  1960.   _MsiDatabaseGenerateTransform: Pointer;
  1961. function MsiDatabaseGenerateTransform;
  1962. begin
  1963.   GetProcedureAddress(_MsiDatabaseGenerateTransform, msilib, 'MsiDatabaseGenerateTransformA');
  1964.   asm
  1965.     mov esp, ebp
  1966.     pop ebp
  1967.     jmp [_MsiDatabaseGenerateTransform]
  1968.   end;
  1969. end;
  1970. {$ELSE}
  1971. function MsiDatabaseGenerateTransform; external msilib name 'MsiDatabaseGenerateTransformA';
  1972. {$ENDIF DYNAMIC_LINK}
  1973. {$ENDIF}
  1974. {$IFDEF DYNAMIC_LINK}
  1975. var
  1976.   _MsiDatabaseApplyTransformA: Pointer;
  1977. function MsiDatabaseApplyTransformA;
  1978. begin
  1979.   GetProcedureAddress(_MsiDatabaseApplyTransformA, msilib, 'MsiDatabaseApplyTransformA');
  1980.   asm
  1981.     mov esp, ebp
  1982.     pop ebp
  1983.     jmp [_MsiDatabaseApplyTransformA]
  1984.   end;
  1985. end;
  1986. {$ELSE}
  1987. function MsiDatabaseApplyTransformA; external msilib name 'MsiDatabaseApplyTransformA';
  1988. {$ENDIF DYNAMIC_LINK}
  1989. {$IFDEF DYNAMIC_LINK}
  1990. var
  1991.   _MsiDatabaseApplyTransformW: Pointer;
  1992. function MsiDatabaseApplyTransformW;
  1993. begin
  1994.   GetProcedureAddress(_MsiDatabaseApplyTransformW, msilib, 'MsiDatabaseApplyTransformW');
  1995.   asm
  1996.     mov esp, ebp
  1997.     pop ebp
  1998.     jmp [_MsiDatabaseApplyTransformW]
  1999.   end;
  2000. end;
  2001. {$ELSE}
  2002. function MsiDatabaseApplyTransformW; external msilib name 'MsiDatabaseApplyTransformW';
  2003. {$ENDIF DYNAMIC_LINK}
  2004. {$IFDEF UNICODE}
  2005. {$IFDEF DYNAMIC_LINK}
  2006. var
  2007.   _MsiDatabaseApplyTransform: Pointer;
  2008. function MsiDatabaseApplyTransform;
  2009. begin
  2010.   GetProcedureAddress(_MsiDatabaseApplyTransform, msilib, 'MsiDatabaseApplyTransformW');
  2011.   asm
  2012.     mov esp, ebp
  2013.     pop ebp
  2014.     jmp [_MsiDatabaseApplyTransform]
  2015.   end;
  2016. end;
  2017. {$ELSE}
  2018. function MsiDatabaseApplyTransform; external msilib name 'MsiDatabaseApplyTransformW';
  2019. {$ENDIF DYNAMIC_LINK}
  2020. {$ELSE}
  2021. {$IFDEF DYNAMIC_LINK}
  2022. var
  2023.   _MsiDatabaseApplyTransform: Pointer;
  2024. function MsiDatabaseApplyTransform;
  2025. begin
  2026.   GetProcedureAddress(_MsiDatabaseApplyTransform, msilib, 'MsiDatabaseApplyTransformA');
  2027.   asm
  2028.     mov esp, ebp
  2029.     pop ebp
  2030.     jmp [_MsiDatabaseApplyTransform]
  2031.   end;
  2032. end;
  2033. {$ELSE}
  2034. function MsiDatabaseApplyTransform; external msilib name 'MsiDatabaseApplyTransformA';
  2035. {$ENDIF DYNAMIC_LINK}
  2036. {$ENDIF}
  2037. {$IFDEF DYNAMIC_LINK}
  2038. var
  2039.   _MsiCreateTransformSummaryInfoA: Pointer;
  2040. function MsiCreateTransformSummaryInfoA;
  2041. begin
  2042.   GetProcedureAddress(_MsiCreateTransformSummaryInfoA, msilib, 'MsiCreateTransformSummaryInfoA');
  2043.   asm
  2044.     mov esp, ebp
  2045.     pop ebp
  2046.     jmp [_MsiCreateTransformSummaryInfoA]
  2047.   end;
  2048. end;
  2049. {$ELSE}
  2050. function MsiCreateTransformSummaryInfoA; external msilib name 'MsiCreateTransformSummaryInfoA';
  2051. {$ENDIF DYNAMIC_LINK}
  2052. {$IFDEF DYNAMIC_LINK}
  2053. var
  2054.   _MsiCreateTransformSummaryInfoW: Pointer;
  2055. function MsiCreateTransformSummaryInfoW;
  2056. begin
  2057.   GetProcedureAddress(_MsiCreateTransformSummaryInfoW, msilib, 'MsiCreateTransformSummaryInfoW');
  2058.   asm
  2059.     mov esp, ebp
  2060.     pop ebp
  2061.     jmp [_MsiCreateTransformSummaryInfoW]
  2062.   end;
  2063. end;
  2064. {$ELSE}
  2065. function MsiCreateTransformSummaryInfoW; external msilib name 'MsiCreateTransformSummaryInfoW';
  2066. {$ENDIF DYNAMIC_LINK}
  2067. {$IFDEF UNICODE}
  2068. {$IFDEF DYNAMIC_LINK}
  2069. var
  2070.   _MsiCreateTransformSummaryInfo: Pointer;
  2071. function MsiCreateTransformSummaryInfo;
  2072. begin
  2073.   GetProcedureAddress(_MsiCreateTransformSummaryInfo, msilib, 'MsiCreateTransformSummaryInfoW');
  2074.   asm
  2075.     mov esp, ebp
  2076.     pop ebp
  2077.     jmp [_MsiCreateTransformSummaryInfo]
  2078.   end;
  2079. end;
  2080. {$ELSE}
  2081. function MsiCreateTransformSummaryInfo; external msilib name 'MsiCreateTransformSummaryInfoW';
  2082. {$ENDIF DYNAMIC_LINK}
  2083. {$ELSE}
  2084. {$IFDEF DYNAMIC_LINK}
  2085. var
  2086.   _MsiCreateTransformSummaryInfo: Pointer;
  2087. function MsiCreateTransformSummaryInfo;
  2088. begin
  2089.   GetProcedureAddress(_MsiCreateTransformSummaryInfo, msilib, 'MsiCreateTransformSummaryInfoA');
  2090.   asm
  2091.     mov esp, ebp
  2092.     pop ebp
  2093.     jmp [_MsiCreateTransformSummaryInfo]
  2094.   end;
  2095. end;
  2096. {$ELSE}
  2097. function MsiCreateTransformSummaryInfo; external msilib name 'MsiCreateTransformSummaryInfoA';
  2098. {$ENDIF DYNAMIC_LINK}
  2099. {$ENDIF}
  2100. {$IFDEF DYNAMIC_LINK}
  2101. var
  2102.   _MsiDatabaseCommit: Pointer;
  2103. function MsiDatabaseCommit;
  2104. begin
  2105.   GetProcedureAddress(_MsiDatabaseCommit, msilib, 'MsiDatabaseCommit');
  2106.   asm
  2107.     mov esp, ebp
  2108.     pop ebp
  2109.     jmp [_MsiDatabaseCommit]
  2110.   end;
  2111. end;
  2112. {$ELSE}
  2113. function MsiDatabaseCommit; external msilib name 'MsiDatabaseCommit';
  2114. {$ENDIF DYNAMIC_LINK}
  2115. {$IFDEF DYNAMIC_LINK}
  2116. var
  2117.   _MsiGetDatabaseState: Pointer;
  2118. function MsiGetDatabaseState;
  2119. begin
  2120.   GetProcedureAddress(_MsiGetDatabaseState, msilib, 'MsiGetDatabaseState');
  2121.   asm
  2122.     mov esp, ebp
  2123.     pop ebp
  2124.     jmp [_MsiGetDatabaseState]
  2125.   end;
  2126. end;
  2127. {$ELSE}
  2128. function MsiGetDatabaseState; external msilib name 'MsiGetDatabaseState';
  2129. {$ENDIF DYNAMIC_LINK}
  2130. {$IFDEF DYNAMIC_LINK}
  2131. var
  2132.   _MsiCreateRecord: Pointer;
  2133. function MsiCreateRecord;
  2134. begin
  2135.   GetProcedureAddress(_MsiCreateRecord, msilib, 'MsiCreateRecord');
  2136.   asm
  2137.     mov esp, ebp
  2138.     pop ebp
  2139.     jmp [_MsiCreateRecord]
  2140.   end;
  2141. end;
  2142. {$ELSE}
  2143. function MsiCreateRecord; external msilib name 'MsiCreateRecord';
  2144. {$ENDIF DYNAMIC_LINK}
  2145. {$IFDEF DYNAMIC_LINK}
  2146. var
  2147.   _MsiRecordIsNull: Pointer;
  2148. function MsiRecordIsNull;
  2149. begin
  2150.   GetProcedureAddress(_MsiRecordIsNull, msilib, 'MsiRecordIsNull');
  2151.   asm
  2152.     mov esp, ebp
  2153.     pop ebp
  2154.     jmp [_MsiRecordIsNull]
  2155.   end;
  2156. end;
  2157. {$ELSE}
  2158. function MsiRecordIsNull; external msilib name 'MsiRecordIsNull';
  2159. {$ENDIF DYNAMIC_LINK}
  2160. {$IFDEF DYNAMIC_LINK}
  2161. var
  2162.   _MsiRecordDataSize: Pointer;
  2163. function MsiRecordDataSize;
  2164. begin
  2165.   GetProcedureAddress(_MsiRecordDataSize, msilib, 'MsiRecordDataSize');
  2166.   asm
  2167.     mov esp, ebp
  2168.     pop ebp
  2169.     jmp [_MsiRecordDataSize]
  2170.   end;
  2171. end;
  2172. {$ELSE}
  2173. function MsiRecordDataSize; external msilib name 'MsiRecordDataSize';
  2174. {$ENDIF DYNAMIC_LINK}
  2175. {$IFDEF DYNAMIC_LINK}
  2176. var
  2177.   _MsiRecordSetInteger: Pointer;
  2178. function MsiRecordSetInteger;
  2179. begin
  2180.   GetProcedureAddress(_MsiRecordSetInteger, msilib, 'MsiRecordSetInteger');
  2181.   asm
  2182.     mov esp, ebp
  2183.     pop ebp
  2184.     jmp [_MsiRecordSetInteger]
  2185.   end;
  2186. end;
  2187. {$ELSE}
  2188. function MsiRecordSetInteger; external msilib name 'MsiRecordSetInteger';
  2189. {$ENDIF DYNAMIC_LINK}
  2190. {$IFDEF DYNAMIC_LINK}
  2191. var
  2192.   _MsiRecordSetStringA: Pointer;
  2193. function MsiRecordSetStringA;
  2194. begin
  2195.   GetProcedureAddress(_MsiRecordSetStringA, msilib, 'MsiRecordSetStringA');
  2196.   asm
  2197.     mov esp, ebp
  2198.     pop ebp
  2199.     jmp [_MsiRecordSetStringA]
  2200.   end;
  2201. end;
  2202. {$ELSE}
  2203. function MsiRecordSetStringA; external msilib name 'MsiRecordSetStringA';
  2204. {$ENDIF DYNAMIC_LINK}
  2205. {$IFDEF DYNAMIC_LINK}
  2206. var
  2207.   _MsiRecordSetStringW: Pointer;
  2208. function MsiRecordSetStringW;
  2209. begin
  2210.   GetProcedureAddress(_MsiRecordSetStringW, msilib, 'MsiRecordSetStringW');
  2211.   asm
  2212.     mov esp, ebp
  2213.     pop ebp
  2214.     jmp [_MsiRecordSetStringW]
  2215.   end;
  2216. end;
  2217. {$ELSE}
  2218. function MsiRecordSetStringW; external msilib name 'MsiRecordSetStringW';
  2219. {$ENDIF DYNAMIC_LINK}
  2220. {$IFDEF UNICODE}
  2221. {$IFDEF DYNAMIC_LINK}
  2222. var
  2223.   _MsiRecordSetString: Pointer;
  2224. function MsiRecordSetString;
  2225. begin
  2226.   GetProcedureAddress(_MsiRecordSetString, msilib, 'MsiRecordSetStringW');
  2227.   asm
  2228.     mov esp, ebp
  2229.     pop ebp
  2230.     jmp [_MsiRecordSetString]
  2231.   end;
  2232. end;
  2233. {$ELSE}
  2234. function MsiRecordSetString; external msilib name 'MsiRecordSetStringW';
  2235. {$ENDIF DYNAMIC_LINK}
  2236. {$ELSE}
  2237. {$IFDEF DYNAMIC_LINK}
  2238. var
  2239.   _MsiRecordSetString: Pointer;
  2240. function MsiRecordSetString;
  2241. begin
  2242.   GetProcedureAddress(_MsiRecordSetString, msilib, 'MsiRecordSetStringA');
  2243.   asm
  2244.     mov esp, ebp
  2245.     pop ebp
  2246.     jmp [_MsiRecordSetString]
  2247.   end;
  2248. end;
  2249. {$ELSE}
  2250. function MsiRecordSetString; external msilib name 'MsiRecordSetStringA';
  2251. {$ENDIF DYNAMIC_LINK}
  2252. {$ENDIF}
  2253. {$IFDEF DYNAMIC_LINK}
  2254. var
  2255.   _MsiRecordGetInteger: Pointer;
  2256. function MsiRecordGetInteger;
  2257. begin
  2258.   GetProcedureAddress(_MsiRecordGetInteger, msilib, 'MsiRecordGetInteger');
  2259.   asm
  2260.     mov esp, ebp
  2261.     pop ebp
  2262.     jmp [_MsiRecordGetInteger]
  2263.   end;
  2264. end;
  2265. {$ELSE}
  2266. function MsiRecordGetInteger; external msilib name 'MsiRecordGetInteger';
  2267. {$ENDIF DYNAMIC_LINK}
  2268. {$IFDEF DYNAMIC_LINK}
  2269. var
  2270.   _MsiRecordGetStringA: Pointer;
  2271. function MsiRecordGetStringA;
  2272. begin
  2273.   GetProcedureAddress(_MsiRecordGetStringA, msilib, 'MsiRecordGetStringA');
  2274.   asm
  2275.     mov esp, ebp
  2276.     pop ebp
  2277.     jmp [_MsiRecordGetStringA]
  2278.   end;
  2279. end;
  2280. {$ELSE}
  2281. function MsiRecordGetStringA; external msilib name 'MsiRecordGetStringA';
  2282. {$ENDIF DYNAMIC_LINK}
  2283. {$IFDEF DYNAMIC_LINK}
  2284. var
  2285.   _MsiRecordGetStringW: Pointer;
  2286. function MsiRecordGetStringW;
  2287. begin
  2288.   GetProcedureAddress(_MsiRecordGetStringW, msilib, 'MsiRecordGetStringW');
  2289.   asm
  2290.     mov esp, ebp
  2291.     pop ebp
  2292.     jmp [_MsiRecordGetStringW]
  2293.   end;
  2294. end;
  2295. {$ELSE}
  2296. function MsiRecordGetStringW; external msilib name 'MsiRecordGetStringW';
  2297. {$ENDIF DYNAMIC_LINK}
  2298. {$IFDEF UNICODE}
  2299. {$IFDEF DYNAMIC_LINK}
  2300. var
  2301.   _MsiRecordGetString: Pointer;
  2302. function MsiRecordGetString;
  2303. begin
  2304.   GetProcedureAddress(_MsiRecordGetString, msilib, 'MsiRecordGetStringW');
  2305.   asm
  2306.     mov esp, ebp
  2307.     pop ebp
  2308.     jmp [_MsiRecordGetString]
  2309.   end;
  2310. end;
  2311. {$ELSE}
  2312. function MsiRecordGetString; external msilib name 'MsiRecordGetStringW';
  2313. {$ENDIF DYNAMIC_LINK}
  2314. {$ELSE}
  2315. {$IFDEF DYNAMIC_LINK}
  2316. var
  2317.   _MsiRecordGetString: Pointer;
  2318. function MsiRecordGetString;
  2319. begin
  2320.   GetProcedureAddress(_MsiRecordGetString, msilib, 'MsiRecordGetStringA');
  2321.   asm
  2322.     mov esp, ebp
  2323.     pop ebp
  2324.     jmp [_MsiRecordGetString]
  2325.   end;
  2326. end;
  2327. {$ELSE}
  2328. function MsiRecordGetString; external msilib name 'MsiRecordGetStringA';
  2329. {$ENDIF DYNAMIC_LINK}
  2330. {$ENDIF}
  2331. {$IFDEF DYNAMIC_LINK}
  2332. var
  2333.   _MsiRecordGetFieldCount: Pointer;
  2334. function MsiRecordGetFieldCount;
  2335. begin
  2336.   GetProcedureAddress(_MsiRecordGetFieldCount, msilib, 'MsiRecordGetFieldCount');
  2337.   asm
  2338.     mov esp, ebp
  2339.     pop ebp
  2340.     jmp [_MsiRecordGetFieldCount]
  2341.   end;
  2342. end;
  2343. {$ELSE}
  2344. function MsiRecordGetFieldCount; external msilib name 'MsiRecordGetFieldCount';
  2345. {$ENDIF DYNAMIC_LINK}
  2346. {$IFDEF DYNAMIC_LINK}
  2347. var
  2348.   _MsiRecordSetStreamA: Pointer;
  2349. function MsiRecordSetStreamA;
  2350. begin
  2351.   GetProcedureAddress(_MsiRecordSetStreamA, msilib, 'MsiRecordSetStreamA');
  2352.   asm
  2353.     mov esp, ebp
  2354.     pop ebp
  2355.     jmp [_MsiRecordSetStreamA]
  2356.   end;
  2357. end;
  2358. {$ELSE}
  2359. function MsiRecordSetStreamA; external msilib name 'MsiRecordSetStreamA';
  2360. {$ENDIF DYNAMIC_LINK}
  2361. {$IFDEF DYNAMIC_LINK}
  2362. var
  2363.   _MsiRecordSetStreamW: Pointer;
  2364. function MsiRecordSetStreamW;
  2365. begin
  2366.   GetProcedureAddress(_MsiRecordSetStreamW, msilib, 'MsiRecordSetStreamW');
  2367.   asm
  2368.     mov esp, ebp
  2369.     pop ebp
  2370.     jmp [_MsiRecordSetStreamW]
  2371.   end;
  2372. end;
  2373. {$ELSE}
  2374. function MsiRecordSetStreamW; external msilib name 'MsiRecordSetStreamW';
  2375. {$ENDIF DYNAMIC_LINK}
  2376. {$IFDEF UNICODE}
  2377. {$IFDEF DYNAMIC_LINK}
  2378. var
  2379.   _MsiRecordSetStream: Pointer;
  2380. function MsiRecordSetStream;
  2381. begin
  2382.   GetProcedureAddress(_MsiRecordSetStream, msilib, 'MsiRecordSetStreamW');
  2383.   asm
  2384.     mov esp, ebp
  2385.     pop ebp
  2386.     jmp [_MsiRecordSetStream]
  2387.   end;
  2388. end;
  2389. {$ELSE}
  2390. function MsiRecordSetStream; external msilib name 'MsiRecordSetStreamW';
  2391. {$ENDIF DYNAMIC_LINK}
  2392. {$ELSE}
  2393. {$IFDEF DYNAMIC_LINK}
  2394. var
  2395.   _MsiRecordSetStream: Pointer;
  2396. function MsiRecordSetStream;
  2397. begin
  2398.   GetProcedureAddress(_MsiRecordSetStream, msilib, 'MsiRecordSetStreamA');
  2399.   asm
  2400.     mov esp, ebp
  2401.     pop ebp
  2402.     jmp [_MsiRecordSetStream]
  2403.   end;
  2404. end;
  2405. {$ELSE}
  2406. function MsiRecordSetStream; external msilib name 'MsiRecordSetStreamA';
  2407. {$ENDIF DYNAMIC_LINK}
  2408. {$ENDIF}
  2409. {$IFDEF DYNAMIC_LINK}
  2410. var
  2411.   _MsiRecordReadStream: Pointer;
  2412. function MsiRecordReadStream;
  2413. begin
  2414.   GetProcedureAddress(_MsiRecordReadStream, msilib, 'MsiRecordReadStream');
  2415.   asm
  2416.     mov esp, ebp
  2417.     pop ebp
  2418.     jmp [_MsiRecordReadStream]
  2419.   end;
  2420. end;
  2421. {$ELSE}
  2422. function MsiRecordReadStream; external msilib name 'MsiRecordReadStream';
  2423. {$ENDIF DYNAMIC_LINK}
  2424. {$IFDEF DYNAMIC_LINK}
  2425. var
  2426.   _MsiRecordClearData: Pointer;
  2427. function MsiRecordClearData;
  2428. begin
  2429.   GetProcedureAddress(_MsiRecordClearData, msilib, 'MsiRecordClearData');
  2430.   asm
  2431.     mov esp, ebp
  2432.     pop ebp
  2433.     jmp [_MsiRecordClearData]
  2434.   end;
  2435. end;
  2436. {$ELSE}
  2437. function MsiRecordClearData; external msilib name 'MsiRecordClearData';
  2438. {$ENDIF DYNAMIC_LINK}
  2439. {$IFDEF DYNAMIC_LINK}
  2440. var
  2441.   _MsiGetActiveDatabase: Pointer;
  2442. function MsiGetActiveDatabase;
  2443. begin
  2444.   GetProcedureAddress(_MsiGetActiveDatabase, msilib, 'MsiGetActiveDatabase');
  2445.   asm
  2446.     mov esp, ebp
  2447.     pop ebp
  2448.     jmp [_MsiGetActiveDatabase]
  2449.   end;
  2450. end;
  2451. {$ELSE}
  2452. function MsiGetActiveDatabase; external msilib name 'MsiGetActiveDatabase';
  2453. {$ENDIF DYNAMIC_LINK}
  2454. {$IFDEF DYNAMIC_LINK}
  2455. var
  2456.   _MsiSetPropertyA: Pointer;
  2457. function MsiSetPropertyA;
  2458. begin
  2459.   GetProcedureAddress(_MsiSetPropertyA, msilib, 'MsiSetPropertyA');
  2460.   asm
  2461.     mov esp, ebp
  2462.     pop ebp
  2463.     jmp [_MsiSetPropertyA]
  2464.   end;
  2465. end;
  2466. {$ELSE}
  2467. function MsiSetPropertyA; external msilib name 'MsiSetPropertyA';
  2468. {$ENDIF DYNAMIC_LINK}
  2469. {$IFDEF DYNAMIC_LINK}
  2470. var
  2471.   _MsiSetPropertyW: Pointer;
  2472. function MsiSetPropertyW;
  2473. begin
  2474.   GetProcedureAddress(_MsiSetPropertyW, msilib, 'MsiSetPropertyW');
  2475.   asm
  2476.     mov esp, ebp
  2477.     pop ebp
  2478.     jmp [_MsiSetPropertyW]
  2479.   end;
  2480. end;
  2481. {$ELSE}
  2482. function MsiSetPropertyW; external msilib name 'MsiSetPropertyW';
  2483. {$ENDIF DYNAMIC_LINK}
  2484. {$IFDEF UNICODE}
  2485. {$IFDEF DYNAMIC_LINK}
  2486. var
  2487.   _MsiSetProperty: Pointer;
  2488. function MsiSetProperty;
  2489. begin
  2490.   GetProcedureAddress(_MsiSetProperty, msilib, 'MsiSetPropertyW');
  2491.   asm
  2492.     mov esp, ebp
  2493.     pop ebp
  2494.     jmp [_MsiSetProperty]
  2495.   end;
  2496. end;
  2497. {$ELSE}
  2498. function MsiSetProperty; external msilib name 'MsiSetPropertyW';
  2499. {$ENDIF DYNAMIC_LINK}
  2500. {$ELSE}
  2501. {$IFDEF DYNAMIC_LINK}
  2502. var
  2503.   _MsiSetProperty: Pointer;
  2504. function MsiSetProperty;
  2505. begin
  2506.   GetProcedureAddress(_MsiSetProperty, msilib, 'MsiSetPropertyA');
  2507.   asm
  2508.     mov esp, ebp
  2509.     pop ebp
  2510.     jmp [_MsiSetProperty]
  2511.   end;
  2512. end;
  2513. {$ELSE}
  2514. function MsiSetProperty; external msilib name 'MsiSetPropertyA';
  2515. {$ENDIF DYNAMIC_LINK}
  2516. {$ENDIF}
  2517. {$IFDEF DYNAMIC_LINK}
  2518. var
  2519.   _MsiGetPropertyA: Pointer;
  2520. function MsiGetPropertyA;
  2521. begin
  2522.   GetProcedureAddress(_MsiGetPropertyA, msilib, 'MsiGetPropertyA');
  2523.   asm
  2524.     mov esp, ebp
  2525.     pop ebp
  2526.     jmp [_MsiGetPropertyA]
  2527.   end;
  2528. end;
  2529. {$ELSE}
  2530. function MsiGetPropertyA; external msilib name 'MsiGetPropertyA';
  2531. {$ENDIF DYNAMIC_LINK}
  2532. {$IFDEF DYNAMIC_LINK}
  2533. var
  2534.   _MsiGetPropertyW: Pointer;
  2535. function MsiGetPropertyW;
  2536. begin
  2537.   GetProcedureAddress(_MsiGetPropertyW, msilib, 'MsiGetPropertyW');
  2538.   asm
  2539.     mov esp, ebp
  2540.     pop ebp
  2541.     jmp [_MsiGetPropertyW]
  2542.   end;
  2543. end;
  2544. {$ELSE}
  2545. function MsiGetPropertyW; external msilib name 'MsiGetPropertyW';
  2546. {$ENDIF DYNAMIC_LINK}
  2547. {$IFDEF UNICODE}
  2548. {$IFDEF DYNAMIC_LINK}
  2549. var
  2550.   _MsiGetProperty: Pointer;
  2551. function MsiGetProperty;
  2552. begin
  2553.   GetProcedureAddress(_MsiGetProperty, msilib, 'MsiGetPropertyW');
  2554.   asm
  2555.     mov esp, ebp
  2556.     pop ebp
  2557.     jmp [_MsiGetProperty]
  2558.   end;
  2559. end;
  2560. {$ELSE}
  2561. function MsiGetProperty; external msilib name 'MsiGetPropertyW';
  2562. {$ENDIF DYNAMIC_LINK}
  2563. {$ELSE}
  2564. {$IFDEF DYNAMIC_LINK}
  2565. var
  2566.   _MsiGetProperty: Pointer;
  2567. function MsiGetProperty;
  2568. begin
  2569.   GetProcedureAddress(_MsiGetProperty, msilib, 'MsiGetPropertyA');
  2570.   asm
  2571.     mov esp, ebp
  2572.     pop ebp
  2573.     jmp [_MsiGetProperty]
  2574.   end;
  2575. end;
  2576. {$ELSE}
  2577. function MsiGetProperty; external msilib name 'MsiGetPropertyA';
  2578. {$ENDIF DYNAMIC_LINK}
  2579. {$ENDIF}
  2580. {$IFDEF DYNAMIC_LINK}
  2581. var
  2582.   _MsiGetLanguage: Pointer;
  2583. function MsiGetLanguage;
  2584. begin
  2585.   GetProcedureAddress(_MsiGetLanguage, msilib, 'MsiGetLanguage');
  2586.   asm
  2587.     mov esp, ebp
  2588.     pop ebp
  2589.     jmp [_MsiGetLanguage]
  2590.   end;
  2591. end;
  2592. {$ELSE}
  2593. function MsiGetLanguage; external msilib name 'MsiGetLanguage';
  2594. {$ENDIF DYNAMIC_LINK}
  2595. {$IFDEF DYNAMIC_LINK}
  2596. var
  2597.   _MsiGetMode: Pointer;
  2598. function MsiGetMode;
  2599. begin
  2600.   GetProcedureAddress(_MsiGetMode, msilib, 'MsiGetMode');
  2601.   asm
  2602.     mov esp, ebp
  2603.     pop ebp
  2604.     jmp [_MsiGetMode]
  2605.   end;
  2606. end;
  2607. {$ELSE}
  2608. function MsiGetMode; external msilib name 'MsiGetMode';
  2609. {$ENDIF DYNAMIC_LINK}
  2610. {$IFDEF DYNAMIC_LINK}
  2611. var
  2612.   _MsiSetMode: Pointer;
  2613. function MsiSetMode;
  2614. begin
  2615.   GetProcedureAddress(_MsiSetMode, msilib, 'MsiSetMode');
  2616.   asm
  2617.     mov esp, ebp
  2618.     pop ebp
  2619.     jmp [_MsiSetMode]
  2620.   end;
  2621. end;
  2622. {$ELSE}
  2623. function MsiSetMode; external msilib name 'MsiSetMode';
  2624. {$ENDIF DYNAMIC_LINK}
  2625. {$IFDEF DYNAMIC_LINK}
  2626. var
  2627.   _MsiFormatRecordA: Pointer;
  2628. function MsiFormatRecordA;
  2629. begin
  2630.   GetProcedureAddress(_MsiFormatRecordA, msilib, 'MsiFormatRecordA');
  2631.   asm
  2632.     mov esp, ebp
  2633.     pop ebp
  2634.     jmp [_MsiFormatRecordA]
  2635.   end;
  2636. end;
  2637. {$ELSE}
  2638. function MsiFormatRecordA; external msilib name 'MsiFormatRecordA';
  2639. {$ENDIF DYNAMIC_LINK}
  2640. {$IFDEF DYNAMIC_LINK}
  2641. var
  2642.   _MsiFormatRecordW: Pointer;
  2643. function MsiFormatRecordW;
  2644. begin
  2645.   GetProcedureAddress(_MsiFormatRecordW, msilib, 'MsiFormatRecordW');
  2646.   asm
  2647.     mov esp, ebp
  2648.     pop ebp
  2649.     jmp [_MsiFormatRecordW]
  2650.   end;
  2651. end;
  2652. {$ELSE}
  2653. function MsiFormatRecordW; external msilib name 'MsiFormatRecordW';
  2654. {$ENDIF DYNAMIC_LINK}
  2655. {$IFDEF UNICODE}
  2656. {$IFDEF DYNAMIC_LINK}
  2657. var
  2658.   _MsiFormatRecord: Pointer;
  2659. function MsiFormatRecord;
  2660. begin
  2661.   GetProcedureAddress(_MsiFormatRecord, msilib, 'MsiFormatRecordW');
  2662.   asm
  2663.     mov esp, ebp
  2664.     pop ebp
  2665.     jmp [_MsiFormatRecord]
  2666.   end;
  2667. end;
  2668. {$ELSE}
  2669. function MsiFormatRecord; external msilib name 'MsiFormatRecordW';
  2670. {$ENDIF DYNAMIC_LINK}
  2671. {$ELSE}
  2672. {$IFDEF DYNAMIC_LINK}
  2673. var
  2674.   _MsiFormatRecord: Pointer;
  2675. function MsiFormatRecord;
  2676. begin
  2677.   GetProcedureAddress(_MsiFormatRecord, msilib, 'MsiFormatRecordA');
  2678.   asm
  2679.     mov esp, ebp
  2680.     pop ebp
  2681.     jmp [_MsiFormatRecord]
  2682.   end;
  2683. end;
  2684. {$ELSE}
  2685. function MsiFormatRecord; external msilib name 'MsiFormatRecordA';
  2686. {$ENDIF DYNAMIC_LINK}
  2687. {$ENDIF}
  2688. {$IFDEF DYNAMIC_LINK}
  2689. var
  2690.   _MsiDoActionA: Pointer;
  2691. function MsiDoActionA;
  2692. begin
  2693.   GetProcedureAddress(_MsiDoActionA, msilib, 'MsiDoActionA');
  2694.   asm
  2695.     mov esp, ebp
  2696.     pop ebp
  2697.     jmp [_MsiDoActionA]
  2698.   end;
  2699. end;
  2700. {$ELSE}
  2701. function MsiDoActionA; external msilib name 'MsiDoActionA';
  2702. {$ENDIF DYNAMIC_LINK}
  2703. {$IFDEF DYNAMIC_LINK}
  2704. var
  2705.   _MsiDoActionW: Pointer;
  2706. function MsiDoActionW;
  2707. begin
  2708.   GetProcedureAddress(_MsiDoActionW, msilib, 'MsiDoActionW');
  2709.   asm
  2710.     mov esp, ebp
  2711.     pop ebp
  2712.     jmp [_MsiDoActionW]
  2713.   end;
  2714. end;
  2715. {$ELSE}
  2716. function MsiDoActionW; external msilib name 'MsiDoActionW';
  2717. {$ENDIF DYNAMIC_LINK}
  2718. {$IFDEF UNICODE}
  2719. {$IFDEF DYNAMIC_LINK}
  2720. var
  2721.   _MsiDoAction: Pointer;
  2722. function MsiDoAction;
  2723. begin
  2724.   GetProcedureAddress(_MsiDoAction, msilib, 'MsiDoActionW');
  2725.   asm
  2726.     mov esp, ebp
  2727.     pop ebp
  2728.     jmp [_MsiDoAction]
  2729.   end;
  2730. end;
  2731. {$ELSE}
  2732. function MsiDoAction; external msilib name 'MsiDoActionW';
  2733. {$ENDIF DYNAMIC_LINK}
  2734. {$ELSE}
  2735. {$IFDEF DYNAMIC_LINK}
  2736. var
  2737.   _MsiDoAction: Pointer;
  2738. function MsiDoAction;
  2739. begin
  2740.   GetProcedureAddress(_MsiDoAction, msilib, 'MsiDoActionA');
  2741.   asm
  2742.     mov esp, ebp
  2743.     pop ebp
  2744.     jmp [_MsiDoAction]
  2745.   end;
  2746. end;
  2747. {$ELSE}
  2748. function MsiDoAction; external msilib name 'MsiDoActionA';
  2749. {$ENDIF DYNAMIC_LINK}
  2750. {$ENDIF}
  2751. {$IFDEF DYNAMIC_LINK}
  2752. var
  2753.   _MsiSequenceA: Pointer;
  2754. function MsiSequenceA;
  2755. begin
  2756.   GetProcedureAddress(_MsiSequenceA, msilib, 'MsiSequenceA');
  2757.   asm
  2758.     mov esp, ebp
  2759.     pop ebp
  2760.     jmp [_MsiSequenceA]
  2761.   end;
  2762. end;
  2763. {$ELSE}
  2764. function MsiSequenceA; external msilib name 'MsiSequenceA';
  2765. {$ENDIF DYNAMIC_LINK}
  2766. {$IFDEF DYNAMIC_LINK}
  2767. var
  2768.   _MsiSequenceW: Pointer;
  2769. function MsiSequenceW;
  2770. begin
  2771.   GetProcedureAddress(_MsiSequenceW, msilib, 'MsiSequenceW');
  2772.   asm
  2773.     mov esp, ebp
  2774.     pop ebp
  2775.     jmp [_MsiSequenceW]
  2776.   end;
  2777. end;
  2778. {$ELSE}
  2779. function MsiSequenceW; external msilib name 'MsiSequenceW';
  2780. {$ENDIF DYNAMIC_LINK}
  2781. {$IFDEF UNICODE}
  2782. {$IFDEF DYNAMIC_LINK}
  2783. var
  2784.   _MsiSequence: Pointer;
  2785. function MsiSequence;
  2786. begin
  2787.   GetProcedureAddress(_MsiSequence, msilib, 'MsiSequenceW');
  2788.   asm
  2789.     mov esp, ebp
  2790.     pop ebp
  2791.     jmp [_MsiSequence]
  2792.   end;
  2793. end;
  2794. {$ELSE}
  2795. function MsiSequence; external msilib name 'MsiSequenceW';
  2796. {$ENDIF DYNAMIC_LINK}
  2797. {$ELSE}
  2798. {$IFDEF DYNAMIC_LINK}
  2799. var
  2800.   _MsiSequence: Pointer;
  2801. function MsiSequence;
  2802. begin
  2803.   GetProcedureAddress(_MsiSequence, msilib, 'MsiSequenceA');
  2804.   asm
  2805.     mov esp, ebp
  2806.     pop ebp
  2807.     jmp [_MsiSequence]
  2808.   end;
  2809. end;
  2810. {$ELSE}
  2811. function MsiSequence; external msilib name 'MsiSequenceA';
  2812. {$ENDIF DYNAMIC_LINK}
  2813. {$ENDIF}
  2814. {$IFDEF DYNAMIC_LINK}
  2815. var
  2816.   _MsiProcessMessage: Pointer;
  2817. function MsiProcessMessage;
  2818. begin
  2819.   GetProcedureAddress(_MsiProcessMessage, msilib, 'MsiProcessMessage');
  2820.   asm
  2821.     mov esp, ebp
  2822.     pop ebp
  2823.     jmp [_MsiProcessMessage]
  2824.   end;
  2825. end;
  2826. {$ELSE}
  2827. function MsiProcessMessage; external msilib name 'MsiProcessMessage';
  2828. {$ENDIF DYNAMIC_LINK}
  2829. {$IFDEF DYNAMIC_LINK}
  2830. var
  2831.   _MsiEvaluateConditionA: Pointer;
  2832. function MsiEvaluateConditionA;
  2833. begin
  2834.   GetProcedureAddress(_MsiEvaluateConditionA, msilib, 'MsiEvaluateConditionA');
  2835.   asm
  2836.     mov esp, ebp
  2837.     pop ebp
  2838.     jmp [_MsiEvaluateConditionA]
  2839.   end;
  2840. end;
  2841. {$ELSE}
  2842. function MsiEvaluateConditionA; external msilib name 'MsiEvaluateConditionA';
  2843. {$ENDIF DYNAMIC_LINK}
  2844. {$IFDEF DYNAMIC_LINK}
  2845. var
  2846.   _MsiEvaluateConditionW: Pointer;
  2847. function MsiEvaluateConditionW;
  2848. begin
  2849.   GetProcedureAddress(_MsiEvaluateConditionW, msilib, 'MsiEvaluateConditionW');
  2850.   asm
  2851.     mov esp, ebp
  2852.     pop ebp
  2853.     jmp [_MsiEvaluateConditionW]
  2854.   end;
  2855. end;
  2856. {$ELSE}
  2857. function MsiEvaluateConditionW; external msilib name 'MsiEvaluateConditionW';
  2858. {$ENDIF DYNAMIC_LINK}
  2859. {$IFDEF UNICODE}
  2860. {$IFDEF DYNAMIC_LINK}
  2861. var
  2862.   _MsiEvaluateCondition: Pointer;
  2863. function MsiEvaluateCondition;
  2864. begin
  2865.   GetProcedureAddress(_MsiEvaluateCondition, msilib, 'MsiEvaluateConditionW');
  2866.   asm
  2867.     mov esp, ebp
  2868.     pop ebp
  2869.     jmp [_MsiEvaluateCondition]
  2870.   end;
  2871. end;
  2872. {$ELSE}
  2873. function MsiEvaluateCondition; external msilib name 'MsiEvaluateConditionW';
  2874. {$ENDIF DYNAMIC_LINK}
  2875. {$ELSE}
  2876. {$IFDEF DYNAMIC_LINK}
  2877. var
  2878.   _MsiEvaluateCondition: Pointer;
  2879. function MsiEvaluateCondition;
  2880. begin
  2881.   GetProcedureAddress(_MsiEvaluateCondition, msilib, 'MsiEvaluateConditionA');
  2882.   asm
  2883.     mov esp, ebp
  2884.     pop ebp
  2885.     jmp [_MsiEvaluateCondition]
  2886.   end;
  2887. end;
  2888. {$ELSE}
  2889. function MsiEvaluateCondition; external msilib name 'MsiEvaluateConditionA';
  2890. {$ENDIF DYNAMIC_LINK}
  2891. {$ENDIF}
  2892. {$IFDEF DYNAMIC_LINK}
  2893. var
  2894.   _MsiGetFeatureStateA: Pointer;
  2895. function MsiGetFeatureStateA;
  2896. begin
  2897.   GetProcedureAddress(_MsiGetFeatureStateA, msilib, 'MsiGetFeatureStateA');
  2898.   asm
  2899.     mov esp, ebp
  2900.     pop ebp
  2901.     jmp [_MsiGetFeatureStateA]
  2902.   end;
  2903. end;
  2904. {$ELSE}
  2905. function MsiGetFeatureStateA; external msilib name 'MsiGetFeatureStateA';
  2906. {$ENDIF DYNAMIC_LINK}
  2907. {$IFDEF DYNAMIC_LINK}
  2908. var
  2909.   _MsiGetFeatureStateW: Pointer;
  2910. function MsiGetFeatureStateW;
  2911. begin
  2912.   GetProcedureAddress(_MsiGetFeatureStateW, msilib, 'MsiGetFeatureStateW');
  2913.   asm
  2914.     mov esp, ebp
  2915.     pop ebp
  2916.     jmp [_MsiGetFeatureStateW]
  2917.   end;
  2918. end;
  2919. {$ELSE}
  2920. function MsiGetFeatureStateW; external msilib name 'MsiGetFeatureStateW';
  2921. {$ENDIF DYNAMIC_LINK}
  2922. {$IFDEF UNICODE}
  2923. {$IFDEF DYNAMIC_LINK}
  2924. var
  2925.   _MsiGetFeatureState: Pointer;
  2926. function MsiGetFeatureState;
  2927. begin
  2928.   GetProcedureAddress(_MsiGetFeatureState, msilib, 'MsiGetFeatureStateW');
  2929.   asm
  2930.     mov esp, ebp
  2931.     pop ebp
  2932.     jmp [_MsiGetFeatureState]
  2933.   end;
  2934. end;
  2935. {$ELSE}
  2936. function MsiGetFeatureState; external msilib name 'MsiGetFeatureStateW';
  2937. {$ENDIF DYNAMIC_LINK}
  2938. {$ELSE}
  2939. {$IFDEF DYNAMIC_LINK}
  2940. var
  2941.   _MsiGetFeatureState: Pointer;
  2942. function MsiGetFeatureState;
  2943. begin
  2944.   GetProcedureAddress(_MsiGetFeatureState, msilib, 'MsiGetFeatureStateA');
  2945.   asm
  2946.     mov esp, ebp
  2947.     pop ebp
  2948.     jmp [_MsiGetFeatureState]
  2949.   end;
  2950. end;
  2951. {$ELSE}
  2952. function MsiGetFeatureState; external msilib name 'MsiGetFeatureStateA';
  2953. {$ENDIF DYNAMIC_LINK}
  2954. {$ENDIF}
  2955. {$IFDEF DYNAMIC_LINK}
  2956. var
  2957.   _MsiSetFeatureStateA: Pointer;
  2958. function MsiSetFeatureStateA;
  2959. begin
  2960.   GetProcedureAddress(_MsiSetFeatureStateA, msilib, 'MsiSetFeatureStateA');
  2961.   asm
  2962.     mov esp, ebp
  2963.     pop ebp
  2964.     jmp [_MsiSetFeatureStateA]
  2965.   end;
  2966. end;
  2967. {$ELSE}
  2968. function MsiSetFeatureStateA; external msilib name 'MsiSetFeatureStateA';
  2969. {$ENDIF DYNAMIC_LINK}
  2970. {$IFDEF DYNAMIC_LINK}
  2971. var
  2972.   _MsiSetFeatureStateW: Pointer;
  2973. function MsiSetFeatureStateW;
  2974. begin
  2975.   GetProcedureAddress(_MsiSetFeatureStateW, msilib, 'MsiSetFeatureStateW');
  2976.   asm
  2977.     mov esp, ebp
  2978.     pop ebp
  2979.     jmp [_MsiSetFeatureStateW]
  2980.   end;
  2981. end;
  2982. {$ELSE}
  2983. function MsiSetFeatureStateW; external msilib name 'MsiSetFeatureStateW';
  2984. {$ENDIF DYNAMIC_LINK}
  2985. {$IFDEF UNICODE}
  2986. {$IFDEF DYNAMIC_LINK}
  2987. var
  2988.   _MsiSetFeatureState: Pointer;
  2989. function MsiSetFeatureState;
  2990. begin
  2991.   GetProcedureAddress(_MsiSetFeatureState, msilib, 'MsiSetFeatureStateW');
  2992.   asm
  2993.     mov esp, ebp
  2994.     pop ebp
  2995.     jmp [_MsiSetFeatureState]
  2996.   end;
  2997. end;
  2998. {$ELSE}
  2999. function MsiSetFeatureState; external msilib name 'MsiSetFeatureStateW';
  3000. {$ENDIF DYNAMIC_LINK}
  3001. {$ELSE}
  3002. {$IFDEF DYNAMIC_LINK}
  3003. var
  3004.   _MsiSetFeatureState: Pointer;
  3005. function MsiSetFeatureState;
  3006. begin
  3007.   GetProcedureAddress(_MsiSetFeatureState, msilib, 'MsiSetFeatureStateA');
  3008.   asm
  3009.     mov esp, ebp
  3010.     pop ebp
  3011.     jmp [_MsiSetFeatureState]
  3012.   end;
  3013. end;
  3014. {$ELSE}
  3015. function MsiSetFeatureState; external msilib name 'MsiSetFeatureStateA';
  3016. {$ENDIF DYNAMIC_LINK}
  3017. {$ENDIF}
  3018. {$IFDEF DYNAMIC_LINK}
  3019. var
  3020.   _MsiSetFeatureAttributesA: Pointer;
  3021. function MsiSetFeatureAttributesA;
  3022. begin
  3023.   GetProcedureAddress(_MsiSetFeatureAttributesA, msilib, 'MsiSetFeatureAttributesA');
  3024.   asm
  3025.     mov esp, ebp
  3026.     pop ebp
  3027.     jmp [_MsiSetFeatureAttributesA]
  3028.   end;
  3029. end;
  3030. {$ELSE}
  3031. function MsiSetFeatureAttributesA; external msilib name 'MsiSetFeatureAttributesA';
  3032. {$ENDIF DYNAMIC_LINK}
  3033. {$IFDEF DYNAMIC_LINK}
  3034. var
  3035.   _MsiSetFeatureAttributesW: Pointer;
  3036. function MsiSetFeatureAttributesW;
  3037. begin
  3038.   GetProcedureAddress(_MsiSetFeatureAttributesW, msilib, 'MsiSetFeatureAttributesW');
  3039.   asm
  3040.     mov esp, ebp
  3041.     pop ebp
  3042.     jmp [_MsiSetFeatureAttributesW]
  3043.   end;
  3044. end;
  3045. {$ELSE}
  3046. function MsiSetFeatureAttributesW; external msilib name 'MsiSetFeatureAttributesW';
  3047. {$ENDIF DYNAMIC_LINK}
  3048. {$IFDEF UNICODE}
  3049. {$IFDEF DYNAMIC_LINK}
  3050. var
  3051.   _MsiSetFeatureAttributes: Pointer;
  3052. function MsiSetFeatureAttributes;
  3053. begin
  3054.   GetProcedureAddress(_MsiSetFeatureAttributes, msilib, 'MsiSetFeatureAttributesW');
  3055.   asm
  3056.     mov esp, ebp
  3057.     pop ebp
  3058.     jmp [_MsiSetFeatureAttributes]
  3059.   end;
  3060. end;
  3061. {$ELSE}
  3062. function MsiSetFeatureAttributes; external msilib name 'MsiSetFeatureAttributesW';
  3063. {$ENDIF DYNAMIC_LINK}
  3064. {$ELSE}
  3065. {$IFDEF DYNAMIC_LINK}
  3066. var
  3067.   _MsiSetFeatureAttributes: Pointer;
  3068. function MsiSetFeatureAttributes;
  3069. begin
  3070.   GetProcedureAddress(_MsiSetFeatureAttributes, msilib, 'MsiSetFeatureAttributesA');
  3071.   asm
  3072.     mov esp, ebp
  3073.     pop ebp
  3074.     jmp [_MsiSetFeatureAttributes]
  3075.   end;
  3076. end;
  3077. {$ELSE}
  3078. function MsiSetFeatureAttributes; external msilib name 'MsiSetFeatureAttributesA';
  3079. {$ENDIF DYNAMIC_LINK}
  3080. {$ENDIF}
  3081. {$IFDEF DYNAMIC_LINK}
  3082. var
  3083.   _MsiGetComponentStateA: Pointer;
  3084. function MsiGetComponentStateA;
  3085. begin
  3086.   GetProcedureAddress(_MsiGetComponentStateA, msilib, 'MsiGetComponentStateA');
  3087.   asm
  3088.     mov esp, ebp
  3089.     pop ebp
  3090.     jmp [_MsiGetComponentStateA]
  3091.   end;
  3092. end;
  3093. {$ELSE}
  3094. function MsiGetComponentStateA; external msilib name 'MsiGetComponentStateA';
  3095. {$ENDIF DYNAMIC_LINK}
  3096. {$IFDEF DYNAMIC_LINK}
  3097. var
  3098.   _MsiGetComponentStateW: Pointer;
  3099. function MsiGetComponentStateW;
  3100. begin
  3101.   GetProcedureAddress(_MsiGetComponentStateW, msilib, 'MsiGetComponentStateW');
  3102.   asm
  3103.     mov esp, ebp
  3104.     pop ebp
  3105.     jmp [_MsiGetComponentStateW]
  3106.   end;
  3107. end;
  3108. {$ELSE}
  3109. function MsiGetComponentStateW; external msilib name 'MsiGetComponentStateW';
  3110. {$ENDIF DYNAMIC_LINK}
  3111. {$IFDEF UNICODE}
  3112. {$IFDEF DYNAMIC_LINK}
  3113. var
  3114.   _MsiGetComponentState: Pointer;
  3115. function MsiGetComponentState;
  3116. begin
  3117.   GetProcedureAddress(_MsiGetComponentState, msilib, 'MsiGetComponentStateW');
  3118.   asm
  3119.     mov esp, ebp
  3120.     pop ebp
  3121.     jmp [_MsiGetComponentState]
  3122.   end;
  3123. end;
  3124. {$ELSE}
  3125. function MsiGetComponentState; external msilib name 'MsiGetComponentStateW';
  3126. {$ENDIF DYNAMIC_LINK}
  3127. {$ELSE}
  3128. {$IFDEF DYNAMIC_LINK}
  3129. var
  3130.   _MsiGetComponentState: Pointer;
  3131. function MsiGetComponentState;
  3132. begin
  3133.   GetProcedureAddress(_MsiGetComponentState, msilib, 'MsiGetComponentStateA');
  3134.   asm
  3135.     mov esp, ebp
  3136.     pop ebp
  3137.     jmp [_MsiGetComponentState]
  3138.   end;
  3139. end;
  3140. {$ELSE}
  3141. function MsiGetComponentState; external msilib name 'MsiGetComponentStateA';
  3142. {$ENDIF DYNAMIC_LINK}
  3143. {$ENDIF}
  3144. {$IFDEF DYNAMIC_LINK}
  3145. var
  3146.   _MsiSetComponentStateA: Pointer;
  3147. function MsiSetComponentStateA;
  3148. begin
  3149.   GetProcedureAddress(_MsiSetComponentStateA, msilib, 'MsiSetComponentStateA');
  3150.   asm
  3151.     mov esp, ebp
  3152.     pop ebp
  3153.     jmp [_MsiSetComponentStateA]
  3154.   end;
  3155. end;
  3156. {$ELSE}
  3157. function MsiSetComponentStateA; external msilib name 'MsiSetComponentStateA';
  3158. {$ENDIF DYNAMIC_LINK}
  3159. {$IFDEF DYNAMIC_LINK}
  3160. var
  3161.   _MsiSetComponentStateW: Pointer;
  3162. function MsiSetComponentStateW;
  3163. begin
  3164.   GetProcedureAddress(_MsiSetComponentStateW, msilib, 'MsiSetComponentStateW');
  3165.   asm
  3166.     mov esp, ebp
  3167.     pop ebp
  3168.     jmp [_MsiSetComponentStateW]
  3169.   end;
  3170. end;
  3171. {$ELSE}
  3172. function MsiSetComponentStateW; external msilib name 'MsiSetComponentStateW';
  3173. {$ENDIF DYNAMIC_LINK}
  3174. {$IFDEF UNICODE}
  3175. {$IFDEF DYNAMIC_LINK}
  3176. var
  3177.   _MsiSetComponentState: Pointer;
  3178. function MsiSetComponentState;
  3179. begin
  3180.   GetProcedureAddress(_MsiSetComponentState, msilib, 'MsiSetComponentStateW');
  3181.   asm
  3182.     mov esp, ebp
  3183.     pop ebp
  3184.     jmp [_MsiSetComponentState]
  3185.   end;
  3186. end;
  3187. {$ELSE}
  3188. function MsiSetComponentState; external msilib name 'MsiSetComponentStateW';
  3189. {$ENDIF DYNAMIC_LINK}
  3190. {$ELSE}
  3191. {$IFDEF DYNAMIC_LINK}
  3192. var
  3193.   _MsiSetComponentState: Pointer;
  3194. function MsiSetComponentState;
  3195. begin
  3196.   GetProcedureAddress(_MsiSetComponentState, msilib, 'MsiSetComponentStateA');
  3197.   asm
  3198.     mov esp, ebp
  3199.     pop ebp
  3200.     jmp [_MsiSetComponentState]
  3201.   end;
  3202. end;
  3203. {$ELSE}
  3204. function MsiSetComponentState; external msilib name 'MsiSetComponentStateA';
  3205. {$ENDIF DYNAMIC_LINK}
  3206. {$ENDIF}
  3207. {$IFDEF DYNAMIC_LINK}
  3208. var
  3209.   _MsiGetFeatureCostA: Pointer;
  3210. function MsiGetFeatureCostA;
  3211. begin
  3212.   GetProcedureAddress(_MsiGetFeatureCostA, msilib, 'MsiGetFeatureCostA');
  3213.   asm
  3214.     mov esp, ebp
  3215.     pop ebp
  3216.     jmp [_MsiGetFeatureCostA]
  3217.   end;
  3218. end;
  3219. {$ELSE}
  3220. function MsiGetFeatureCostA; external msilib name 'MsiGetFeatureCostA';
  3221. {$ENDIF DYNAMIC_LINK}
  3222. {$IFDEF DYNAMIC_LINK}
  3223. var
  3224.   _MsiGetFeatureCostW: Pointer;
  3225. function MsiGetFeatureCostW;
  3226. begin
  3227.   GetProcedureAddress(_MsiGetFeatureCostW, msilib, 'MsiGetFeatureCostW');
  3228.   asm
  3229.     mov esp, ebp
  3230.     pop ebp
  3231.     jmp [_MsiGetFeatureCostW]
  3232.   end;
  3233. end;
  3234. {$ELSE}
  3235. function MsiGetFeatureCostW; external msilib name 'MsiGetFeatureCostW';
  3236. {$ENDIF DYNAMIC_LINK}
  3237. {$IFDEF UNICODE}
  3238. {$IFDEF DYNAMIC_LINK}
  3239. var
  3240.   _MsiGetFeatureCost: Pointer;
  3241. function MsiGetFeatureCost;
  3242. begin
  3243.   GetProcedureAddress(_MsiGetFeatureCost, msilib, 'MsiGetFeatureCostW');
  3244.   asm
  3245.     mov esp, ebp
  3246.     pop ebp
  3247.     jmp [_MsiGetFeatureCost]
  3248.   end;
  3249. end;
  3250. {$ELSE}
  3251. function MsiGetFeatureCost; external msilib name 'MsiGetFeatureCostW';
  3252. {$ENDIF DYNAMIC_LINK}
  3253. {$ELSE}
  3254. {$IFDEF DYNAMIC_LINK}
  3255. var
  3256.   _MsiGetFeatureCost: Pointer;
  3257. function MsiGetFeatureCost;
  3258. begin
  3259.   GetProcedureAddress(_MsiGetFeatureCost, msilib, 'MsiGetFeatureCostA');
  3260.   asm
  3261.     mov esp, ebp
  3262.     pop ebp
  3263.     jmp [_MsiGetFeatureCost]
  3264.   end;
  3265. end;
  3266. {$ELSE}
  3267. function MsiGetFeatureCost; external msilib name 'MsiGetFeatureCostA';
  3268. {$ENDIF DYNAMIC_LINK}
  3269. {$ENDIF}
  3270. {$IFDEF DYNAMIC_LINK}
  3271. var
  3272.   _MsiEnumComponentCostsA: Pointer;
  3273. function MsiEnumComponentCostsA;
  3274. begin
  3275.   GetProcedureAddress(_MsiEnumComponentCostsA, msilib, 'MsiEnumComponentCostsA');
  3276.   asm
  3277.     mov esp, ebp
  3278.     pop ebp
  3279.     jmp [_MsiEnumComponentCostsA]
  3280.   end;
  3281. end;
  3282. {$ELSE}
  3283. function MsiEnumComponentCostsA; external msilib name 'MsiEnumComponentCostsA';
  3284. {$ENDIF DYNAMIC_LINK}
  3285. {$IFDEF DYNAMIC_LINK}
  3286. var
  3287.   _MsiEnumComponentCostsW: Pointer;
  3288. function MsiEnumComponentCostsW;
  3289. begin
  3290.   GetProcedureAddress(_MsiEnumComponentCostsW, msilib, 'MsiEnumComponentCostsW');
  3291.   asm
  3292.     mov esp, ebp
  3293.     pop ebp
  3294.     jmp [_MsiEnumComponentCostsW]
  3295.   end;
  3296. end;
  3297. {$ELSE}
  3298. function MsiEnumComponentCostsW; external msilib name 'MsiEnumComponentCostsW';
  3299. {$ENDIF DYNAMIC_LINK}
  3300. {$IFDEF UNICODE}
  3301. {$IFDEF DYNAMIC_LINK}
  3302. var
  3303.   _MsiEnumComponentCosts: Pointer;
  3304. function MsiEnumComponentCosts;
  3305. begin
  3306.   GetProcedureAddress(_MsiEnumComponentCosts, msilib, 'MsiEnumComponentCostsW');
  3307.   asm
  3308.     mov esp, ebp
  3309.     pop ebp
  3310.     jmp [_MsiEnumComponentCosts]
  3311.   end;
  3312. end;
  3313. {$ELSE}
  3314. function MsiEnumComponentCosts; external msilib name 'MsiEnumComponentCostsW';
  3315. {$ENDIF DYNAMIC_LINK}
  3316. {$ELSE}
  3317. {$IFDEF DYNAMIC_LINK}
  3318. var
  3319.   _MsiEnumComponentCosts: Pointer;
  3320. function MsiEnumComponentCosts;
  3321. begin
  3322.   GetProcedureAddress(_MsiEnumComponentCosts, msilib, 'MsiEnumComponentCostsA');
  3323.   asm
  3324.     mov esp, ebp
  3325.     pop ebp
  3326.     jmp [_MsiEnumComponentCosts]
  3327.   end;
  3328. end;
  3329. {$ELSE}
  3330. function MsiEnumComponentCosts; external msilib name 'MsiEnumComponentCostsA';
  3331. {$ENDIF DYNAMIC_LINK}
  3332. {$ENDIF}
  3333. {$IFDEF DYNAMIC_LINK}
  3334. var
  3335.   _MsiSetInstallLevel: Pointer;
  3336. function MsiSetInstallLevel;
  3337. begin
  3338.   GetProcedureAddress(_MsiSetInstallLevel, msilib, 'MsiSetInstallLevel');
  3339.   asm
  3340.     mov esp, ebp
  3341.     pop ebp
  3342.     jmp [_MsiSetInstallLevel]
  3343.   end;
  3344. end;
  3345. {$ELSE}
  3346. function MsiSetInstallLevel; external msilib name 'MsiSetInstallLevel';
  3347. {$ENDIF DYNAMIC_LINK}
  3348. {$IFDEF DYNAMIC_LINK}
  3349. var
  3350.   _MsiGetFeatureValidStatesA: Pointer;
  3351. function MsiGetFeatureValidStatesA;
  3352. begin
  3353.   GetProcedureAddress(_MsiGetFeatureValidStatesA, msilib, 'MsiGetFeatureValidStatesA');
  3354.   asm
  3355.     mov esp, ebp
  3356.     pop ebp
  3357.     jmp [_MsiGetFeatureValidStatesA]
  3358.   end;
  3359. end;
  3360. {$ELSE}
  3361. function MsiGetFeatureValidStatesA; external msilib name 'MsiGetFeatureValidStatesA';
  3362. {$ENDIF DYNAMIC_LINK}
  3363. {$IFDEF DYNAMIC_LINK}
  3364. var
  3365.   _MsiGetFeatureValidStatesW: Pointer;
  3366. function MsiGetFeatureValidStatesW;
  3367. begin
  3368.   GetProcedureAddress(_MsiGetFeatureValidStatesW, msilib, 'MsiGetFeatureValidStatesW');
  3369.   asm
  3370.     mov esp, ebp
  3371.     pop ebp
  3372.     jmp [_MsiGetFeatureValidStatesW]
  3373.   end;
  3374. end;
  3375. {$ELSE}
  3376. function MsiGetFeatureValidStatesW; external msilib name 'MsiGetFeatureValidStatesW';
  3377. {$ENDIF DYNAMIC_LINK}
  3378. {$IFDEF UNICODE}
  3379. {$IFDEF DYNAMIC_LINK}
  3380. var
  3381.   _MsiGetFeatureValidStates: Pointer;
  3382. function MsiGetFeatureValidStates;
  3383. begin
  3384.   GetProcedureAddress(_MsiGetFeatureValidStates, msilib, 'MsiGetFeatureValidStatesW');
  3385.   asm
  3386.     mov esp, ebp
  3387.     pop ebp
  3388.     jmp [_MsiGetFeatureValidStates]
  3389.   end;
  3390. end;
  3391. {$ELSE}
  3392. function MsiGetFeatureValidStates; external msilib name 'MsiGetFeatureValidStatesW';
  3393. {$ENDIF DYNAMIC_LINK}
  3394. {$ELSE}
  3395. {$IFDEF DYNAMIC_LINK}
  3396. var
  3397.   _MsiGetFeatureValidStates: Pointer;
  3398. function MsiGetFeatureValidStates;
  3399. begin
  3400.   GetProcedureAddress(_MsiGetFeatureValidStates, msilib, 'MsiGetFeatureValidStatesA');
  3401.   asm
  3402.     mov esp, ebp
  3403.     pop ebp
  3404.     jmp [_MsiGetFeatureValidStates]
  3405.   end;
  3406. end;
  3407. {$ELSE}
  3408. function MsiGetFeatureValidStates; external msilib name 'MsiGetFeatureValidStatesA';
  3409. {$ENDIF DYNAMIC_LINK}
  3410. {$ENDIF}
  3411. {$IFDEF DYNAMIC_LINK}
  3412. var
  3413.   _MsiGetSourcePathA: Pointer;
  3414. function MsiGetSourcePathA;
  3415. begin
  3416.   GetProcedureAddress(_MsiGetSourcePathA, msilib, 'MsiGetSourcePathA');
  3417.   asm
  3418.     mov esp, ebp
  3419.     pop ebp
  3420.     jmp [_MsiGetSourcePathA]
  3421.   end;
  3422. end;
  3423. {$ELSE}
  3424. function MsiGetSourcePathA; external msilib name 'MsiGetSourcePathA';
  3425. {$ENDIF DYNAMIC_LINK}
  3426. {$IFDEF DYNAMIC_LINK}
  3427. var
  3428.   _MsiGetSourcePathW: Pointer;
  3429. function MsiGetSourcePathW;
  3430. begin
  3431.   GetProcedureAddress(_MsiGetSourcePathW, msilib, 'MsiGetSourcePathW');
  3432.   asm
  3433.     mov esp, ebp
  3434.     pop ebp
  3435.     jmp [_MsiGetSourcePathW]
  3436.   end;
  3437. end;
  3438. {$ELSE}
  3439. function MsiGetSourcePathW; external msilib name 'MsiGetSourcePathW';
  3440. {$ENDIF DYNAMIC_LINK}
  3441. {$IFDEF UNICODE}
  3442. {$IFDEF DYNAMIC_LINK}
  3443. var
  3444.   _MsiGetSourcePath: Pointer;
  3445. function MsiGetSourcePath;
  3446. begin
  3447.   GetProcedureAddress(_MsiGetSourcePath, msilib, 'MsiGetSourcePathW');
  3448.   asm
  3449.     mov esp, ebp
  3450.     pop ebp
  3451.     jmp [_MsiGetSourcePath]
  3452.   end;
  3453. end;
  3454. {$ELSE}
  3455. function MsiGetSourcePath; external msilib name 'MsiGetSourcePathW';
  3456. {$ENDIF DYNAMIC_LINK}
  3457. {$ELSE}
  3458. {$IFDEF DYNAMIC_LINK}
  3459. var
  3460.   _MsiGetSourcePath: Pointer;
  3461. function MsiGetSourcePath;
  3462. begin
  3463.   GetProcedureAddress(_MsiGetSourcePath, msilib, 'MsiGetSourcePathA');
  3464.   asm
  3465.     mov esp, ebp
  3466.     pop ebp
  3467.     jmp [_MsiGetSourcePath]
  3468.   end;
  3469. end;
  3470. {$ELSE}
  3471. function MsiGetSourcePath; external msilib name 'MsiGetSourcePathA';
  3472. {$ENDIF DYNAMIC_LINK}
  3473. {$ENDIF}
  3474. {$IFDEF DYNAMIC_LINK}
  3475. var
  3476.   _MsiGetTargetPathA: Pointer;
  3477. function MsiGetTargetPathA;
  3478. begin
  3479.   GetProcedureAddress(_MsiGetTargetPathA, msilib, 'MsiGetTargetPathA');
  3480.   asm
  3481.     mov esp, ebp
  3482.     pop ebp
  3483.     jmp [_MsiGetTargetPathA]
  3484.   end;
  3485. end;
  3486. {$ELSE}
  3487. function MsiGetTargetPathA; external msilib name 'MsiGetTargetPathA';
  3488. {$ENDIF DYNAMIC_LINK}
  3489. {$IFDEF DYNAMIC_LINK}
  3490. var
  3491.   _MsiGetTargetPathW: Pointer;
  3492. function MsiGetTargetPathW;
  3493. begin
  3494.   GetProcedureAddress(_MsiGetTargetPathW, msilib, 'MsiGetTargetPathW');
  3495.   asm
  3496.     mov esp, ebp
  3497.     pop ebp
  3498.     jmp [_MsiGetTargetPathW]
  3499.   end;
  3500. end;
  3501. {$ELSE}
  3502. function MsiGetTargetPathW; external msilib name 'MsiGetTargetPathW';
  3503. {$ENDIF DYNAMIC_LINK}
  3504. {$IFDEF UNICODE}
  3505. {$IFDEF DYNAMIC_LINK}
  3506. var
  3507.   _MsiGetTargetPath: Pointer;
  3508. function MsiGetTargetPath;
  3509. begin
  3510.   GetProcedureAddress(_MsiGetTargetPath, msilib, 'MsiGetTargetPathW');
  3511.   asm
  3512.     mov esp, ebp
  3513.     pop ebp
  3514.     jmp [_MsiGetTargetPath]
  3515.   end;
  3516. end;
  3517. {$ELSE}
  3518. function MsiGetTargetPath; external msilib name 'MsiGetTargetPathW';
  3519. {$ENDIF DYNAMIC_LINK}
  3520. {$ELSE}
  3521. {$IFDEF DYNAMIC_LINK}
  3522. var
  3523.   _MsiGetTargetPath: Pointer;
  3524. function MsiGetTargetPath;
  3525. begin
  3526.   GetProcedureAddress(_MsiGetTargetPath, msilib, 'MsiGetTargetPathA');
  3527.   asm
  3528.     mov esp, ebp
  3529.     pop ebp
  3530.     jmp [_MsiGetTargetPath]
  3531.   end;
  3532. end;
  3533. {$ELSE}
  3534. function MsiGetTargetPath; external msilib name 'MsiGetTargetPathA';
  3535. {$ENDIF DYNAMIC_LINK}
  3536. {$ENDIF}
  3537. {$IFDEF DYNAMIC_LINK}
  3538. var
  3539.   _MsiSetTargetPathA: Pointer;
  3540. function MsiSetTargetPathA;
  3541. begin
  3542.   GetProcedureAddress(_MsiSetTargetPathA, msilib, 'MsiSetTargetPathA');
  3543.   asm
  3544.     mov esp, ebp
  3545.     pop ebp
  3546.     jmp [_MsiSetTargetPathA]
  3547.   end;
  3548. end;
  3549. {$ELSE}
  3550. function MsiSetTargetPathA; external msilib name 'MsiSetTargetPathA';
  3551. {$ENDIF DYNAMIC_LINK}
  3552. {$IFDEF DYNAMIC_LINK}
  3553. var
  3554.   _MsiSetTargetPathW: Pointer;
  3555. function MsiSetTargetPathW;
  3556. begin
  3557.   GetProcedureAddress(_MsiSetTargetPathW, msilib, 'MsiSetTargetPathW');
  3558.   asm
  3559.     mov esp, ebp
  3560.     pop ebp
  3561.     jmp [_MsiSetTargetPathW]
  3562.   end;
  3563. end;
  3564. {$ELSE}
  3565. function MsiSetTargetPathW; external msilib name 'MsiSetTargetPathW';
  3566. {$ENDIF DYNAMIC_LINK}
  3567. {$IFDEF UNICODE}
  3568. {$IFDEF DYNAMIC_LINK}
  3569. var
  3570.   _MsiSetTargetPath: Pointer;
  3571. function MsiSetTargetPath;
  3572. begin
  3573.   GetProcedureAddress(_MsiSetTargetPath, msilib, 'MsiSetTargetPathW');
  3574.   asm
  3575.     mov esp, ebp
  3576.     pop ebp
  3577.     jmp [_MsiSetTargetPath]
  3578.   end;
  3579. end;
  3580. {$ELSE}
  3581. function MsiSetTargetPath; external msilib name 'MsiSetTargetPathW';
  3582. {$ENDIF DYNAMIC_LINK}
  3583. {$ELSE}
  3584. {$IFDEF DYNAMIC_LINK}
  3585. var
  3586.   _MsiSetTargetPath: Pointer;
  3587. function MsiSetTargetPath;
  3588. begin
  3589.   GetProcedureAddress(_MsiSetTargetPath, msilib, 'MsiSetTargetPathA');
  3590.   asm
  3591.     mov esp, ebp
  3592.     pop ebp
  3593.     jmp [_MsiSetTargetPath]
  3594.   end;
  3595. end;
  3596. {$ELSE}
  3597. function MsiSetTargetPath; external msilib name 'MsiSetTargetPathA';
  3598. {$ENDIF DYNAMIC_LINK}
  3599. {$ENDIF}
  3600. {$IFDEF DYNAMIC_LINK}
  3601. var
  3602.   _MsiVerifyDiskSpace: Pointer;
  3603. function MsiVerifyDiskSpace;
  3604. begin
  3605.   GetProcedureAddress(_MsiVerifyDiskSpace, msilib, 'MsiVerifyDiskSpace');
  3606.   asm
  3607.     mov esp, ebp
  3608.     pop ebp
  3609.     jmp [_MsiVerifyDiskSpace]
  3610.   end;
  3611. end;
  3612. {$ELSE}
  3613. function MsiVerifyDiskSpace; external msilib name 'MsiVerifyDiskSpace';
  3614. {$ENDIF DYNAMIC_LINK}
  3615. {$IFDEF DYNAMIC_LINK}
  3616. var
  3617.   _MsiEnableUIPreview: Pointer;
  3618. function MsiEnableUIPreview;
  3619. begin
  3620.   GetProcedureAddress(_MsiEnableUIPreview, msilib, 'MsiEnableUIPreview');
  3621.   asm
  3622.     mov esp, ebp
  3623.     pop ebp
  3624.     jmp [_MsiEnableUIPreview]
  3625.   end;
  3626. end;
  3627. {$ELSE}
  3628. function MsiEnableUIPreview; external msilib name 'MsiEnableUIPreview';
  3629. {$ENDIF DYNAMIC_LINK}
  3630. {$IFDEF DYNAMIC_LINK}
  3631. var
  3632.   _MsiPreviewDialogA: Pointer;
  3633. function MsiPreviewDialogA;
  3634. begin
  3635.   GetProcedureAddress(_MsiPreviewDialogA, msilib, 'MsiPreviewDialogA');
  3636.   asm
  3637.     mov esp, ebp
  3638.     pop ebp
  3639.     jmp [_MsiPreviewDialogA]
  3640.   end;
  3641. end;
  3642. {$ELSE}
  3643. function MsiPreviewDialogA; external msilib name 'MsiPreviewDialogA';
  3644. {$ENDIF DYNAMIC_LINK}
  3645. {$IFDEF DYNAMIC_LINK}
  3646. var
  3647.   _MsiPreviewDialogW: Pointer;
  3648. function MsiPreviewDialogW;
  3649. begin
  3650.   GetProcedureAddress(_MsiPreviewDialogW, msilib, 'MsiPreviewDialogW');
  3651.   asm
  3652.     mov esp, ebp
  3653.     pop ebp
  3654.     jmp [_MsiPreviewDialogW]
  3655.   end;
  3656. end;
  3657. {$ELSE}
  3658. function MsiPreviewDialogW; external msilib name 'MsiPreviewDialogW';
  3659. {$ENDIF DYNAMIC_LINK}
  3660. {$IFDEF UNICODE}
  3661. {$IFDEF DYNAMIC_LINK}
  3662. var
  3663.   _MsiPreviewDialog: Pointer;
  3664. function MsiPreviewDialog;
  3665. begin
  3666.   GetProcedureAddress(_MsiPreviewDialog, msilib, 'MsiPreviewDialogW');
  3667.   asm
  3668.     mov esp, ebp
  3669.     pop ebp
  3670.     jmp [_MsiPreviewDialog]
  3671.   end;
  3672. end;
  3673. {$ELSE}
  3674. function MsiPreviewDialog; external msilib name 'MsiPreviewDialogW';
  3675. {$ENDIF DYNAMIC_LINK}
  3676. {$ELSE}
  3677. {$IFDEF DYNAMIC_LINK}
  3678. var
  3679.   _MsiPreviewDialog: Pointer;
  3680. function MsiPreviewDialog;
  3681. begin
  3682.   GetProcedureAddress(_MsiPreviewDialog, msilib, 'MsiPreviewDialogA');
  3683.   asm
  3684.     mov esp, ebp
  3685.     pop ebp
  3686.     jmp [_MsiPreviewDialog]
  3687.   end;
  3688. end;
  3689. {$ELSE}
  3690. function MsiPreviewDialog; external msilib name 'MsiPreviewDialogA';
  3691. {$ENDIF DYNAMIC_LINK}
  3692. {$ENDIF}
  3693. {$IFDEF DYNAMIC_LINK}
  3694. var
  3695.   _MsiPreviewBillboardA: Pointer;
  3696. function MsiPreviewBillboardA;
  3697. begin
  3698.   GetProcedureAddress(_MsiPreviewBillboardA, msilib, 'MsiPreviewBillboardA');
  3699.   asm
  3700.     mov esp, ebp
  3701.     pop ebp
  3702.     jmp [_MsiPreviewBillboardA]
  3703.   end;
  3704. end;
  3705. {$ELSE}
  3706. function MsiPreviewBillboardA; external msilib name 'MsiPreviewBillboardA';
  3707. {$ENDIF DYNAMIC_LINK}
  3708. {$IFDEF DYNAMIC_LINK}
  3709. var
  3710.   _MsiPreviewBillboardW: Pointer;
  3711. function MsiPreviewBillboardW;
  3712. begin
  3713.   GetProcedureAddress(_MsiPreviewBillboardW, msilib, 'MsiPreviewBillboardW');
  3714.   asm
  3715.     mov esp, ebp
  3716.     pop ebp
  3717.     jmp [_MsiPreviewBillboardW]
  3718.   end;
  3719. end;
  3720. {$ELSE}
  3721. function MsiPreviewBillboardW; external msilib name 'MsiPreviewBillboardW';
  3722. {$ENDIF DYNAMIC_LINK}
  3723. {$IFDEF UNICODE}
  3724. {$IFDEF DYNAMIC_LINK}
  3725. var
  3726.   _MsiPreviewBillboard: Pointer;
  3727. function MsiPreviewBillboard;
  3728. begin
  3729.   GetProcedureAddress(_MsiPreviewBillboard, msilib, 'MsiPreviewBillboardW');
  3730.   asm
  3731.     mov esp, ebp
  3732.     pop ebp
  3733.     jmp [_MsiPreviewBillboard]
  3734.   end;
  3735. end;
  3736. {$ELSE}
  3737. function MsiPreviewBillboard; external msilib name 'MsiPreviewBillboardW';
  3738. {$ENDIF DYNAMIC_LINK}
  3739. {$ELSE}
  3740. {$IFDEF DYNAMIC_LINK}
  3741. var
  3742.   _MsiPreviewBillboard: Pointer;
  3743. function MsiPreviewBillboard;
  3744. begin
  3745.   GetProcedureAddress(_MsiPreviewBillboard, msilib, 'MsiPreviewBillboardA');
  3746.   asm
  3747.     mov esp, ebp
  3748.     pop ebp
  3749.     jmp [_MsiPreviewBillboard]
  3750.   end;
  3751. end;
  3752. {$ELSE}
  3753. function MsiPreviewBillboard; external msilib name 'MsiPreviewBillboardA';
  3754. {$ENDIF DYNAMIC_LINK}
  3755. {$ENDIF}
  3756. {$IFDEF DYNAMIC_LINK}
  3757. var
  3758.   _MsiGetLastErrorRecord: Pointer;
  3759. function MsiGetLastErrorRecord;
  3760. begin
  3761.   GetProcedureAddress(_MsiGetLastErrorRecord, msilib, 'MsiGetLastErrorRecord');
  3762.   asm
  3763.     mov esp, ebp
  3764.     pop ebp
  3765.     jmp [_MsiGetLastErrorRecord]
  3766.   end;
  3767. end;
  3768. {$ELSE}
  3769. function MsiGetLastErrorRecord; external msilib name 'MsiGetLastErrorRecord';
  3770. {$ENDIF DYNAMIC_LINK}
  3771. end.