From ee3ac7a8fba5a003c8ebe692b11fca0b851bb6fb Mon Sep 17 00:00:00 2001 From: Steven Stein Date: Sun, 11 Feb 2007 19:51:03 -0500 Subject: [PATCH] msi: ValidateProductID action stub. --- 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 1a8fa5aa6f7..b328e5dcc91 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -4503,6 +4503,12 @@ static UINT ACTION_DeleteServices( MSIPACKAGE *package ) 'S','e','r','v','i','c','e','C','o','n','t','r','o','l',0 }; return msi_unimplemented_action_stub( package, "DeleteServices", table ); } +static UINT ACTION_ValidateProductID( MSIPACKAGE *package ) +{ + static const WCHAR table[] = { + 'P','r','o','d','u','c','t','I','D',0 }; + return msi_unimplemented_action_stub( package, "ValidateProductID", table ); +} static UINT ACTION_WriteEnvironmentStrings( MSIPACKAGE *package ) { @@ -4634,7 +4640,7 @@ static const struct _actions StandardActions[] = { { szUnregisterMIMEInfo, NULL}, { szUnregisterProgIdInfo, NULL}, { szUnregisterTypeLibraries, NULL}, - { szValidateProductID, NULL}, + { szValidateProductID, ACTION_ValidateProductID}, { szWriteEnvironmentStrings, ACTION_WriteEnvironmentStrings }, { szWriteIniValues, ACTION_WriteIniValues }, { szWriteRegistryValues, ACTION_WriteRegistryValues},