From 559427023f20a85c18f855d2f7e3f04731a4e5f5 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Sun, 30 Oct 2005 19:23:28 +0000 Subject: [PATCH] Add a stub for the AllocateRegistrySpace action. --- dlls/msi/action.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index a26585bc528..5f19211c74c 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -4124,6 +4124,12 @@ 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[] = @@ -4231,7 +4237,7 @@ static UINT ACTION_UnregisterFonts( MSIPACKAGE *package ) } static struct _actions StandardActions[] = { - { szAllocateRegistrySpace, NULL}, + { szAllocateRegistrySpace, ACTION_AllocateRegistrySpace }, { szAppSearch, ACTION_AppSearch }, { szBindImage, ACTION_BindImage }, { szCCPSearch, NULL}, -- 2.11.4.GIT