Module: wine Branch: master Commit: 552a9c9b85f34ecf4ab32fbe853f791c9f408815 URL: http://source.winehq.org/git/wine.git/?a=commit;h=552a9c9b85f34ecf4ab32fbe85...
Author: Hans Leidekker hans@codeweavers.com Date: Wed Feb 3 09:19:56 2010 +0100
msi: Add a stub implementation of the SetODBCFolders standard action.
---
dlls/msi/action.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 462b9ff..4b2d5b4 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -6081,6 +6081,12 @@ static UINT ACTION_RemoveShortcuts( MSIPACKAGE *package ) return msi_unimplemented_action_stub( package, "RemoveShortcuts", table ); }
+static UINT ACTION_SetODBCFolders( MSIPACKAGE *package ) +{ + static const WCHAR table[] = { 'D','i','r','e','c','t','o','r','y',0 }; + return msi_unimplemented_action_stub( package, "SetODBCFolders", table ); +} + static UINT ACTION_UnpublishComponents( MSIPACKAGE *package ) { static const WCHAR table[] = { 'P','u','b','l','i','s','h','C','o','m','p','o','n','e','n','t',0 }; @@ -6185,7 +6191,7 @@ StandardActions[] = { szScheduleReboot, NULL }, { szSelfRegModules, ACTION_SelfRegModules }, { szSelfUnregModules, ACTION_SelfUnregModules }, - { szSetODBCFolders, NULL }, + { szSetODBCFolders, ACTION_SetODBCFolders }, { szStartServices, ACTION_StartServices }, { szStopServices, ACTION_StopServices }, { szUnpublishComponents, ACTION_UnpublishComponents },