Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
bd55684d
Commit
bd55684d
authored
Jan 06, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 06, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Declare more functions.
parent
b13b2474
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
13 deletions
+18
-13
msi.h
include/msi.h
+10
-2
msiquery.h
include/msiquery.h
+8
-11
No files found.
include/msi.h
View file @
bd55684d
...
...
@@ -144,6 +144,10 @@ UINT WINAPI MsiAdvertiseProductA(LPCSTR, LPCSTR, LPCSTR, LANGID);
UINT
WINAPI
MsiAdvertiseProductW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LANGID
);
#define MsiAdvertiseProduct WINELIB_NAME_AW(MsiAdvertiseProduct)
UINT
WINAPI
MsiAdvertiseProductExA
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
LANGID
,
DWORD
,
DWORD
);
UINT
WINAPI
MsiAdvertiseProductExW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LANGID
,
DWORD
,
DWORD
);
#define MsiAdvertiseProductEx WINELIB_NAME_AW(MsiAdvertiseProductEx)
UINT
WINAPI
MsiInstallProductA
(
LPCSTR
,
LPCSTR
);
UINT
WINAPI
MsiInstallProductW
(
LPCWSTR
,
LPCWSTR
);
#define MsiInstallProduct WINELIB_NAME_AW(MsiInstallProduct)
...
...
@@ -156,8 +160,8 @@ UINT WINAPI MsiApplyPatchA(LPCSTR, LPCSTR, INSTALLTYPE, LPCSTR);
UINT
WINAPI
MsiApplyPatchW
(
LPCWSTR
,
LPCWSTR
,
INSTALLTYPE
,
LPCWSTR
);
#define MsiApplyPatch WINELIB_NAME_AW(MsiApplyPatch)
UINT
WINAPI
MsiEnumProductsA
(
DWORD
index
,
LPSTR
lpguid
);
UINT
WINAPI
MsiEnumProductsW
(
DWORD
index
,
LPWSTR
lpguid
);
UINT
WINAPI
MsiEnumProductsA
(
DWORD
,
LPSTR
);
UINT
WINAPI
MsiEnumProductsW
(
DWORD
,
LPWSTR
);
#define MsiEnumProducts WINELIB_NAME_AW(MsiEnumProducts)
UINT
WINAPI
MsiEnumFeaturesA
(
LPCSTR
,
DWORD
,
LPSTR
,
LPSTR
);
...
...
@@ -264,6 +268,10 @@ UINT WINAPI MsiGetFileVersionA(LPCSTR, LPSTR, DWORD*, LPSTR, DWORD*);
UINT
WINAPI
MsiGetFileVersionW
(
LPCWSTR
,
LPWSTR
,
DWORD
*
,
LPWSTR
,
DWORD
*
);
#define MsiGetFileVersion WINELIB_NAME_AW(MsiGetFileVersion)
UINT
WINAPI
MsiMessageBoxA
(
HWND
,
LPCSTR
,
LPCSTR
,
UINT
,
WORD
,
DWORD
);
UINT
WINAPI
MsiMessageBoxW
(
HWND
,
LPCWSTR
,
LPCWSTR
,
UINT
,
WORD
,
DWORD
);
#define MsiMessageBox WINELIB_NAME_AW(MsiMessageBox)
/* Non Unicode */
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
(
void
);
...
...
include/msiquery.h
View file @
bd55684d
...
...
@@ -146,15 +146,12 @@ MSICONDITION WINAPI MsiEvaluateConditionW(MSIHANDLE,LPCWSTR);
#define MsiEvaluateCondition WINELIB_NAME_AW(MsiEvaluateCondition)
/* property functions */
UINT
WINAPI
MsiGetPropertyA
(
MSIHANDLE
hInstall
,
LPCSTR
szName
,
LPSTR
szValueBuf
,
DWORD
*
pchValueBuf
);
UINT
WINAPI
MsiGetPropertyW
(
MSIHANDLE
hInstall
,
LPCWSTR
szName
,
LPWSTR
szValueBuf
,
DWORD
*
pchValueBuf
);
UINT
WINAPI
MsiGetPropertyA
(
MSIHANDLE
,
LPCSTR
,
LPSTR
,
DWORD
*
);
UINT
WINAPI
MsiGetPropertyW
(
MSIHANDLE
,
LPCWSTR
,
LPWSTR
,
DWORD
*
);
#define MsiGetProperty WINELIB_NAME_AW(MsiGetProperty)
UINT
WINAPI
MsiSetPropertyA
(
MSIHANDLE
hInstall
,
LPCSTR
szName
,
LPCSTR
szValue
);
UINT
WINAPI
MsiSetPropertyW
(
MSIHANDLE
hInstall
,
LPCWSTR
szName
,
LPCWSTR
szValue
);
UINT
WINAPI
MsiSetPropertyA
(
MSIHANDLE
,
LPCSTR
,
LPCSTR
);
UINT
WINAPI
MsiSetPropertyW
(
MSIHANDLE
,
LPCWSTR
,
LPCWSTR
);
#define MsiSetProperty WINELIB_NAME_AW(MsiSetProperty)
UINT
WINAPI
MsiGetTargetPathA
(
MSIHANDLE
,
LPCSTR
,
LPSTR
,
DWORD
*
);
...
...
@@ -171,11 +168,11 @@ UINT WINAPI MsiGetSourcePathW(MSIHANDLE,LPCWSTR,LPWSTR,DWORD*);
MSIHANDLE
WINAPI
MsiGetActiveDatabase
(
MSIHANDLE
);
UINT
WINAPI
MsiViewGetColumnInfo
(
MSIHANDLE
,
MSICOLINFO
,
MSIHANDLE
*
);
INT
WINAPI
MsiProcessMessage
(
MSIHANDLE
,
INSTALLMESSAGE
,
MSIHANDLE
);
UINT
WINAPI
MsiViewGetColumnInfo
(
MSIHANDLE
,
MSICOLINFO
,
MSIHANDLE
*
);
INT
WINAPI
MsiProcessMessage
(
MSIHANDLE
,
INSTALLMESSAGE
,
MSIHANDLE
);
UINT
WINAPI
MsiSetFeatureStateA
(
MSIHANDLE
,
LPCSTR
,
INSTALLSTATE
);
UINT
WINAPI
MsiSetFeatureStateW
(
MSIHANDLE
,
LPCWSTR
,
INSTALLSTATE
);
UINT
WINAPI
MsiSetFeatureStateA
(
MSIHANDLE
,
LPCSTR
,
INSTALLSTATE
);
UINT
WINAPI
MsiSetFeatureStateW
(
MSIHANDLE
,
LPCWSTR
,
INSTALLSTATE
);
#define MsiSetFeatureState WINELIB_NAME_AW(MsiSetFeatureState)
BOOL
WINAPI
MsiGetMode
(
MSIHANDLE
,
MSIRUNMODE
);
...
...
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