Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
f6125ad3
Commit
f6125ad3
authored
Sep 27, 2003
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 27, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added AW defines to msi.h and msiquery.h.
parent
60c857e1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
2 deletions
+33
-2
msi.h
include/msi.h
+14
-1
msiquery.h
include/msiquery.h
+19
-1
No files found.
include/msi.h
View file @
f6125ad3
/*
* Copyright (C) 2002 Mike McCormack
* Copyright (C) 2002
,2003
Mike McCormack
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
...
...
@@ -54,32 +54,45 @@ typedef enum tagINSTALLUILEVEL
UINT
WINAPI
MsiInstallProductA
(
LPCSTR
,
LPCSTR
);
UINT
WINAPI
MsiInstallProductW
(
LPCWSTR
,
LPCWSTR
);
#define MsiInstallProduct WINELIB_NAME_AW(MsiInstallProduct)
UINT
WINAPI
MsiEnumProductsA
(
DWORD
index
,
LPSTR
lpguid
);
UINT
WINAPI
MsiEnumProductsW
(
DWORD
index
,
LPWSTR
lpguid
);
#define MsiEnumProducts WINELIB_NAME_AW(MsiEnumProducts)
UINT
WINAPI
MsiEnumFeaturesA
(
LPCSTR
,
DWORD
,
LPSTR
,
LPSTR
);
UINT
WINAPI
MsiEnumFeaturesW
(
LPCWSTR
,
DWORD
,
LPWSTR
,
LPWSTR
);
#define MsiEnumFeatures WINELIB_NAME_AW(MsiEnumFeatures)
UINT
WINAPI
MsiEnumComponentsA
(
DWORD
,
LPSTR
);
UINT
WINAPI
MsiEnumComponentsW
(
DWORD
,
LPWSTR
);
#define MsiEnumComponents WINELIB_NAME_AW(MsiEnumComponents)
UINT
WINAPI
MsiEnumClientsA
(
LPCSTR
,
DWORD
,
LPSTR
);
UINT
WINAPI
MsiEnumClientsW
(
LPCWSTR
,
DWORD
,
LPWSTR
);
#define MsiEnumClients WINELIB_NAME_AW(MsiEnumClients)
UINT
WINAPI
MsiOpenDatabaseA
(
LPCSTR
,
LPCSTR
,
MSIHANDLE
*
);
UINT
WINAPI
MsiOpenDatabaseW
(
LPCWSTR
,
LPCWSTR
,
MSIHANDLE
*
);
#define MsiOpenDatabase WINELIB_NAME_AW(MsiOpenDatabase)
UINT
WINAPI
MsiOpenPackageA
(
LPCSTR
,
MSIHANDLE
*
);
UINT
WINAPI
MsiOpenPackageW
(
LPCWSTR
,
MSIHANDLE
*
);
#define MsiOpenPackage WINELIB_NAME_AW(MsiOpenPackage)
UINT
WINAPI
MsiGetSummaryInformationA
(
MSIHANDLE
,
LPCSTR
,
UINT
,
MSIHANDLE
*
);
UINT
WINAPI
MsiGetSummaryInformationW
(
MSIHANDLE
,
LPCWSTR
,
UINT
,
MSIHANDLE
*
);
#define MsiGetSummaryInformation WINELIB_NAME_AW(MsiGetSummaryInformation)
UINT
WINAPI
MsiSummaryInfoGetPropertyA
(
MSIHANDLE
,
UINT
,
UINT
*
,
INT
*
,
FILETIME
*
,
LPSTR
,
DWORD
*
);
UINT
WINAPI
MsiSummaryInfoGetPropertyW
(
MSIHANDLE
,
UINT
,
UINT
*
,
INT
*
,
FILETIME
*
,
LPWSTR
,
DWORD
*
);
#define MsiSummaryInfoGetProperty WINELIB_NAME_AW(MsiSummaryInfoGetProperty)
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
();
UINT
WINAPI
MsiProvideComponentFromDescriptorA
(
LPCSTR
,
LPSTR
,
DWORD
*
,
DWORD
*
);
UINT
WINAPI
MsiProvideComponentFromDescriptorW
(
LPCWSTR
,
LPWSTR
,
DWORD
*
,
DWORD
*
);
#define MsiProvideComponentFromDescriptor WINELIB_NAME_AW(MsiProvideComponentFromDescriptor)
#endif
/* __WINE_MSI_H */
include/msiquery.h
View file @
f6125ad3
/*
* Copyright (C) 2002 Mike McCormack
* Copyright (C) 2002
,2003
Mike McCormack
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
...
...
@@ -61,6 +61,7 @@ UINT WINAPI MsiViewExecute(MSIHANDLE,MSIHANDLE);
UINT
WINAPI
MsiViewClose
(
MSIHANDLE
);
UINT
WINAPI
MsiDatabaseOpenViewA
(
MSIHANDLE
,
LPCSTR
,
MSIHANDLE
*
);
UINT
WINAPI
MsiDatabaseOpenViewW
(
MSIHANDLE
,
LPCWSTR
,
MSIHANDLE
*
);
#define MsiDatabaseOpenView WINELIB_NAME_AW(MsiDatabaseOpenView)
/* record manipulation */
MSIHANDLE
WINAPI
MsiCreateRecord
(
unsigned
int
);
...
...
@@ -68,31 +69,48 @@ UINT WINAPI MsiRecordClearData(MSIHANDLE);
UINT
WINAPI
MsiRecordSetInteger
(
MSIHANDLE
,
unsigned
int
,
int
);
UINT
WINAPI
MsiRecordSetStringA
(
MSIHANDLE
,
unsigned
int
,
LPCSTR
);
UINT
WINAPI
MsiRecordSetStringW
(
MSIHANDLE
,
unsigned
int
,
LPCWSTR
);
#define MsiRecordSetString WINELIB_NAME_AW(MsiRecordSetString)
UINT
WINAPI
MsiRecordGetStringA
(
MSIHANDLE
,
unsigned
int
,
LPSTR
,
DWORD
*
);
UINT
WINAPI
MsiRecordGetStringW
(
MSIHANDLE
,
unsigned
int
,
LPWSTR
,
DWORD
*
);
#define MsiRecordGetString WINELIB_NAME_AW(MsiRecordGetString)
UINT
WINAPI
MsiRecordGetFieldCount
(
MSIHANDLE
);
int
WINAPI
MsiRecordGetInteger
(
MSIHANDLE
,
unsigned
int
);
UINT
WINAPI
MsiRecordDataSize
(
MSIHANDLE
,
unsigned
int
);
BOOL
WINAPI
MsiRecordIsNull
(
MSIHANDLE
,
unsigned
int
);
UINT
WINAPI
MsiFormatRecordA
(
MSIHANDLE
,
MSIHANDLE
,
LPSTR
,
DWORD
*
);
UINT
WINAPI
MsiFormatRecordW
(
MSIHANDLE
,
MSIHANDLE
,
LPWSTR
,
DWORD
*
);
#define MsiFormatRecord WINELIB_NAME_AW(MsiFormatRecord)
UINT
WINAPI
MsiRecordSetStreamA
(
MSIHANDLE
,
unsigned
int
,
LPCSTR
);
UINT
WINAPI
MsiRecordSetStreamW
(
MSIHANDLE
,
unsigned
int
,
LPCWSTR
);
#define MsiRecordSetStream WINELIB_NAME_AW(MsiRecordSetStream)
UINT
WINAPI
MsiRecordReadStream
(
MSIHANDLE
,
unsigned
int
,
char
*
,
DWORD
*
);
UINT
WINAPI
MsiDatabaseGetPrimaryKeysA
(
MSIHANDLE
,
LPCSTR
,
MSIHANDLE
*
);
UINT
WINAPI
MsiDatabaseGetPrimaryKeysW
(
MSIHANDLE
,
LPCWSTR
,
MSIHANDLE
*
);
#define MsiDatabaseGetPrimaryKeys WINELIB_NAME_AW(MsiDatabaseGetPrimaryKeys)
/* installing */
UINT
WINAPI
MsiDoActionA
(
MSIHANDLE
,
LPCSTR
);
UINT
WINAPI
MsiDoActionW
(
MSIHANDLE
,
LPCWSTR
);
#define MsiDoAction WINELIB_NAME_AW(MsiDoAction)
/* database transforms */
UINT
WINAPI
MsiDatabaseApplyTransformA
(
MSIHANDLE
,
LPCSTR
,
int
);
UINT
WINAPI
MsiDatabaseApplyTransformW
(
MSIHANDLE
,
LPCWSTR
,
int
);
#define MsiDatabaseApplyTransform WINELIB_NAME_AW(MsiDatabaseApplyTransform)
UINT
WINAPI
MsiDatabaseGenerateTransformA
(
MSIHANDLE
,
MSIHANDLE
,
LPCSTR
,
int
,
int
);
UINT
WINAPI
MsiDatabaseGenerateTransformW
(
MSIHANDLE
,
MSIHANDLE
,
LPCWSTR
,
int
,
int
);
#define MsiDatabaseGenerateTransform WINELIB_NAME_AW(MsiDatabaseGenerateTransform)
UINT
WINAPI
MsiDatabaseCommit
(
MSIHANDLE
);
/* install state */
UINT
WINAPI
MsiGetFeatureStateA
(
MSIHANDLE
,
LPSTR
,
INSTALLSTATE
*
,
INSTALLSTATE
*
);
UINT
WINAPI
MsiGetFeatureStateW
(
MSIHANDLE
,
LPWSTR
,
INSTALLSTATE
*
,
INSTALLSTATE
*
);
#define MsiGetFeatureState WINELIB_NAME_AW(MsiGetFeatureState)
UINT
WINAPI
MsiGetComponentStateA
(
MSIHANDLE
,
LPSTR
,
INSTALLSTATE
*
,
INSTALLSTATE
*
);
UINT
WINAPI
MsiGetComponentStateW
(
MSIHANDLE
,
LPWSTR
,
INSTALLSTATE
*
,
INSTALLSTATE
*
);
#define MsiGetComponentState WINELIB_NAME_AW(MsiGetComponentState)
#endif
/* __WINE_MSIQUERY_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment