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
eebf13a1
Commit
eebf13a1
authored
Sep 20, 2005
by
Jan Van Buggenhout
Committed by
Alexandre Julliard
Sep 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implement stubs for MsiSequence[AW].
parent
ee5f97c0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
install.c
dlls/msi/install.c
+18
-0
msi.spec
dlls/msi/msi.spec
+2
-2
msiquery.h
include/msiquery.h
+4
-0
No files found.
dlls/msi/install.c
View file @
eebf13a1
...
...
@@ -77,6 +77,24 @@ UINT WINAPI MsiDoActionW( MSIHANDLE hInstall, LPCWSTR szAction )
return
ret
;
}
/***********************************************************************
* MsiSequenceA (MSI.@)
*/
UINT
WINAPI
MsiSequenceA
(
MSIHANDLE
hInstall
,
LPCSTR
szAction
,
INT
iSequenceMode
)
{
TRACE
(
"%s
\n
"
,
debugstr_a
(
szAction
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* MsiSequenceW (MSI.@)
*/
UINT
WINAPI
MsiSequenceW
(
MSIHANDLE
hInstall
,
LPCWSTR
szAction
,
INT
iSequenceMode
)
{
TRACE
(
"%s
\n
"
,
debugstr_w
(
szAction
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
static
UINT
msi_strcpy_to_awstring
(
LPCWSTR
str
,
awstring
*
awbuf
,
DWORD
*
sz
)
{
UINT
len
,
r
=
ERROR_SUCCESS
;
...
...
dlls/msi/msi.spec
View file @
eebf13a1
...
...
@@ -125,8 +125,8 @@
129 stdcall MsiReinstallFeatureW(wstr wstr long)
130 stdcall MsiReinstallProductA(str long)
131 stdcall MsiReinstallProductW(wstr long)
132 st
ub MsiSequenceA
133 st
ub MsiSequenceW
132 st
dcall MsiSequenceA(long str long)
133 st
dcall MsiSequenceW(long wstr long)
134 stdcall MsiSetComponentStateA(long str long)
135 stdcall MsiSetComponentStateW(long wstr long)
136 stdcall MsiSetExternalUIA(ptr long ptr)
...
...
include/msiquery.h
View file @
eebf13a1
...
...
@@ -252,6 +252,10 @@ UINT WINAPI MsiDatabaseIsTablePersistentA(MSIHANDLE, LPSTR);
UINT
WINAPI
MsiDatabaseIsTablePersistentW
(
MSIHANDLE
,
LPWSTR
);
#define MsiDatabaseIsTablePersistent WINELIB_NAME_AW(MsiDatabaseIsTablePersistent)
UINT
WINAPI
MsiSequenceA
(
MSIHANDLE
,
LPCSTR
,
INT
);
UINT
WINAPI
MsiSequenceW
(
MSIHANDLE
,
LPCWSTR
,
INT
);
#define MsiSequence WINELIB_NAME_AW(MsiSequence)
UINT
WINAPI
MsiSummaryInfoPersist
(
MSIHANDLE
);
UINT
WINAPI
MsiSummaryInfoGetPropertyCount
(
MSIHANDLE
,
UINT
*
);
...
...
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