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
fe11241c
Commit
fe11241c
authored
Aug 24, 2005
by
Johan Dahlin
Committed by
Alexandre Julliard
Aug 24, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for MsiSetComponentStateA and MsiSetComponentStateW.
parent
febad089
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
install.c
dlls/msi/install.c
+20
-0
msi.spec
dlls/msi/msi.spec
+2
-2
No files found.
dlls/msi/install.c
View file @
fe11241c
...
...
@@ -524,6 +524,16 @@ piAction);
}
/***********************************************************************
* MsiSetComponentStateA (MSI.@)
*/
UINT
WINAPI
MsiSetComponentStateA
(
MSIHANDLE
hInstall
,
LPCSTR
szComponent
,
INSTALLSTATE
iState
)
{
FIXME
(
"STUB (szComponent=%s,iState=%i)
\n
"
,
debugstr_a
(
szComponent
),
iState
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiGetComponentStateA (MSI.@)
*/
UINT
WINAPI
MsiGetComponentStateA
(
MSIHANDLE
hInstall
,
LPSTR
szComponent
,
...
...
@@ -565,6 +575,16 @@ UINT MSI_GetComponentStateW(MSIPACKAGE *package, LPWSTR szComponent,
}
/***********************************************************************
* MsiSetComponentStateW (MSI.@)
*/
UINT
WINAPI
MsiSetComponentStateW
(
MSIHANDLE
hInstall
,
LPCWSTR
szComponent
,
INSTALLSTATE
iState
)
{
FIXME
(
"STUB (szComponent=%s,iState=%i)
\n
"
,
debugstr_w
(
szComponent
),
iState
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiGetComponentStateW (MSI.@)
*/
UINT
WINAPI
MsiGetComponentStateW
(
MSIHANDLE
hInstall
,
LPWSTR
szComponent
,
...
...
dlls/msi/msi.spec
View file @
fe11241c
...
...
@@ -127,8 +127,8 @@
131 stdcall MsiReinstallProductW(wstr long)
132 stub MsiSequenceA
133 stub MsiSequenceW
134 st
ub MsiSetComponentStateA
135 st
ub MsiSetComponentStateW
134 st
dcall MsiSetComponentStateA(long str long)
135 st
dcall MsiSetComponentStateW(long wstr long)
136 stdcall MsiSetExternalUIA(ptr long ptr)
137 stdcall MsiSetExternalUIW(ptr long ptr)
138 stdcall MsiSetFeatureStateA(long str long)
...
...
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