Commit 55942702 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Add a stub for the AllocateRegistrySpace action.

parent ec5edeeb
......@@ -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},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment