Update ooo320-m1
[ooovba.git] / setup_native / source / win32 / customactions / quickstarter / shutdown_quickstart.cxx
blobc87200f01fed617c6d2b3910d751a84cbdf4bbe1
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: shutdown_quickstart.cxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #include "quickstarter.hxx"
32 #include <setup_native/qswin32.h>
34 static BOOL CALLBACK EnumWindowsProc( HWND hWnd, LPARAM lParam )
36 MSIHANDLE hMSI = static_cast< MSIHANDLE >( lParam );
37 CHAR szClassName[sizeof(QUICKSTART_CLASSNAMEA) + 1];
39 int nCharsCopied = GetClassName( hWnd, szClassName, sizeof( szClassName ) );
41 if ( nCharsCopied && !stricmp( QUICKSTART_CLASSNAMEA, szClassName ) )
43 DWORD dwProcessId;
45 if ( GetWindowThreadProcessId( hWnd, &dwProcessId ) )
47 std::string sImagePath = GetProcessImagePath( dwProcessId );
48 std::string sOfficeImageDir = GetOfficeInstallationPath( hMSI ) + "program\\";
50 if ( !strnicmp( sImagePath.c_str(), sOfficeImageDir.c_str(), sOfficeImageDir.length() ) )
52 UINT uMsgShutdownQuickstart = RegisterWindowMessageA( SHUTDOWN_QUICKSTART_MESSAGEA );
54 if ( uMsgShutdownQuickstart )
55 SendMessageA( hWnd, uMsgShutdownQuickstart, 0, 0 );
58 HANDLE hProcess = OpenProcess( SYNCHRONIZE, FALSE, dwProcessId );
60 if ( hProcess )
62 WaitForSingleObject( hProcess, 30000 ); // Wait at most 30 seconds for process to terminate
63 CloseHandle( hProcess );
66 return FALSE;
72 return TRUE;
76 extern "C" UINT __stdcall ShutDownQuickstarter( MSIHANDLE hMSI )
78 EnumWindows( EnumWindowsProc, hMSI );
80 return ERROR_SUCCESS;