mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 02:36:13 +00:00
Update msiquery.h header (sync with Wine)
svn path=/trunk/; revision=22599
This commit is contained in:
parent
b9782f4327
commit
78baad6812
1 changed files with 12 additions and 3 deletions
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __WINE_MSIQUERY_H
|
#ifndef __WINE_MSIQUERY_H
|
||||||
|
@ -127,6 +127,13 @@ typedef enum tagMSIDBERROR
|
||||||
MSIDBERROR_BADLOCALIZEATTRIB = 29
|
MSIDBERROR_BADLOCALIZEATTRIB = 29
|
||||||
} MSIDBERROR;
|
} MSIDBERROR;
|
||||||
|
|
||||||
|
typedef enum tagMSIDBSTATE
|
||||||
|
{
|
||||||
|
MSIDBSTATE_ERROR = -1,
|
||||||
|
MSIDBSTATE_READ = 0,
|
||||||
|
MSIDBSTATE_WRITE = 1
|
||||||
|
} MSIDBSTATE;
|
||||||
|
|
||||||
/* view manipulation */
|
/* view manipulation */
|
||||||
UINT WINAPI MsiViewFetch(MSIHANDLE,MSIHANDLE*);
|
UINT WINAPI MsiViewFetch(MSIHANDLE,MSIHANDLE*);
|
||||||
UINT WINAPI MsiViewExecute(MSIHANDLE,MSIHANDLE);
|
UINT WINAPI MsiViewExecute(MSIHANDLE,MSIHANDLE);
|
||||||
|
@ -138,6 +145,8 @@ MSIDBERROR WINAPI MsiViewGetErrorA(MSIHANDLE,LPSTR,DWORD*);
|
||||||
MSIDBERROR WINAPI MsiViewGetErrorW(MSIHANDLE,LPWSTR,DWORD*);
|
MSIDBERROR WINAPI MsiViewGetErrorW(MSIHANDLE,LPWSTR,DWORD*);
|
||||||
#define MsiViewGetError WINELIB_NAME_AW(MsiViewGetError)
|
#define MsiViewGetError WINELIB_NAME_AW(MsiViewGetError)
|
||||||
|
|
||||||
|
MSIDBSTATE WINAPI MsiGetDatabaseState(MSIHANDLE);
|
||||||
|
|
||||||
/* record manipulation */
|
/* record manipulation */
|
||||||
MSIHANDLE WINAPI MsiCreateRecord(unsigned int);
|
MSIHANDLE WINAPI MsiCreateRecord(unsigned int);
|
||||||
UINT WINAPI MsiRecordClearData(MSIHANDLE);
|
UINT WINAPI MsiRecordClearData(MSIHANDLE);
|
||||||
|
@ -256,8 +265,8 @@ UINT WINAPI MsiOpenDatabaseW(LPCWSTR, LPCWSTR, MSIHANDLE*);
|
||||||
UINT WINAPI MsiOpenDatabaseA(LPCSTR, LPCSTR, MSIHANDLE*);
|
UINT WINAPI MsiOpenDatabaseA(LPCSTR, LPCSTR, MSIHANDLE*);
|
||||||
#define MsiOpenDatabase WINELIB_NAME_AW(MsiOpenDatabase)
|
#define MsiOpenDatabase WINELIB_NAME_AW(MsiOpenDatabase)
|
||||||
|
|
||||||
UINT WINAPI MsiDatabaseIsTablePersistentA(MSIHANDLE, LPSTR);
|
MSICONDITION WINAPI MsiDatabaseIsTablePersistentA(MSIHANDLE, LPSTR);
|
||||||
UINT WINAPI MsiDatabaseIsTablePersistentW(MSIHANDLE, LPWSTR);
|
MSICONDITION WINAPI MsiDatabaseIsTablePersistentW(MSIHANDLE, LPWSTR);
|
||||||
#define MsiDatabaseIsTablePersistent WINELIB_NAME_AW(MsiDatabaseIsTablePersistent)
|
#define MsiDatabaseIsTablePersistent WINELIB_NAME_AW(MsiDatabaseIsTablePersistent)
|
||||||
|
|
||||||
UINT WINAPI MsiSequenceA(MSIHANDLE, LPCSTR, INT);
|
UINT WINAPI MsiSequenceA(MSIHANDLE, LPCSTR, INT);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue