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
5df62d0c
Commit
5df62d0c
authored
Feb 10, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Feb 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add stub implementations of the DisableRollback and InstallAdminPackage standard actions.
parent
3b6c20e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
8 deletions
+20
-8
action.c
dlls/msi/action.c
+20
-8
No files found.
dlls/msi/action.c
View file @
5df62d0c
...
...
@@ -6132,6 +6132,24 @@ static UINT ACTION_ScheduleReboot( MSIPACKAGE *package )
return
ERROR_SUCCESS
;
}
static
UINT
ACTION_AllocateRegistrySpace
(
MSIPACKAGE
*
package
)
{
TRACE
(
"%p
\n
"
,
package
);
return
ERROR_SUCCESS
;
}
static
UINT
ACTION_DisableRollback
(
MSIPACKAGE
*
package
)
{
FIXME
(
"%p
\n
"
,
package
);
return
ERROR_SUCCESS
;
}
static
UINT
ACTION_InstallAdminPackage
(
MSIPACKAGE
*
package
)
{
FIXME
(
"%p
\n
"
,
package
);
return
ERROR_SUCCESS
;
}
static
UINT
msi_unimplemented_action_stub
(
MSIPACKAGE
*
package
,
LPCSTR
action
,
LPCWSTR
table
)
{
...
...
@@ -6156,12 +6174,6 @@ static UINT msi_unimplemented_action_stub( MSIPACKAGE *package,
return
ERROR_SUCCESS
;
}
static
UINT
ACTION_AllocateRegistrySpace
(
MSIPACKAGE
*
package
)
{
TRACE
(
"%p
\n
"
,
package
);
return
ERROR_SUCCESS
;
}
static
UINT
ACTION_RemoveIniValues
(
MSIPACKAGE
*
package
)
{
static
const
WCHAR
table
[]
=
...
...
@@ -6335,13 +6347,13 @@ StandardActions[] =
{
szCreateFolders
,
ACTION_CreateFolders
},
{
szCreateShortcuts
,
ACTION_CreateShortcuts
},
{
szDeleteServices
,
ACTION_DeleteServices
},
{
szDisableRollback
,
NULL
},
{
szDisableRollback
,
ACTION_DisableRollback
},
{
szDuplicateFiles
,
ACTION_DuplicateFiles
},
{
szExecuteAction
,
ACTION_ExecuteAction
},
{
szFileCost
,
ACTION_FileCost
},
{
szFindRelatedProducts
,
ACTION_FindRelatedProducts
},
{
szForceReboot
,
ACTION_ForceReboot
},
{
szInstallAdminPackage
,
NULL
},
{
szInstallAdminPackage
,
ACTION_InstallAdminPackage
},
{
szInstallExecute
,
ACTION_InstallExecute
},
{
szInstallExecuteAgain
,
ACTION_InstallExecute
},
{
szInstallFiles
,
ACTION_InstallFiles
},
...
...
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