/* * Implementation of the Microsoft Installer (msi.dll) * * Copyright 2005 Mike McCormack for CodeWeavers * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include "windef.h" #include "winbase.h" #include "winnls.h" #include "msi.h" #include "msipriv.h" #include "wine/debug.h" #include "wine/unicode.h" WINE_DEFAULT_DEBUG_CHANNEL(msi); static void MSI_ClosePreview( MSIOBJECTHDR *arg ) { MSIPREVIEW *preview = (MSIPREVIEW *) arg; msiobj_release( &preview->package->hdr ); } MSIPREVIEW *MSI_EnableUIPreview( MSIDATABASE *db ) { MSIPREVIEW *preview = NULL; MSIPACKAGE *package; package = MSI_CreatePackage( db ); if( package ) { preview = alloc_msiobject( MSIHANDLETYPE_PREVIEW, sizeof (MSIPREVIEW), MSI_ClosePreview ); if( preview ) { preview->package = package; preview->dialog = 0; msiobj_addref( &package->hdr ); } msiobj_release( &package->hdr ); } return preview; } UINT WINAPI MsiEnableUIPreview( MSIHANDLE hdb, MSIHANDLE* phPreview ) { MSIDATABASE *db; MSIPREVIEW *preview; UINT r = ERROR_FUNCTION_FAILED; TRACE("%ld %p\n", hdb, phPreview); db = msihandle2msiinfo( hdb, MSIHANDLETYPE_DATABASE ); if( !db ) return ERROR_INVALID_HANDLE; preview = MSI_EnableUIPreview( db ); if( preview ) { *phPreview = alloc_msihandle( &preview->hdr ); msiobj_release( &preview->hdr ); r = ERROR_SUCCESS; } msiobj_release( &db->hdr ); return r; } static UINT preview_event_handler( MSIPACKAGE *package, LPCWSTR event, LPCWSTR argument, msi_dialog *dialog ) { MESSAGE("Preview dialog event '%s' (arg='%s')\n", debugstr_w( event ), debugstr_w( argument )); return ERROR_SUCCESS; } UINT MSI_PreviewDialogW( MSIPREVIEW *preview, LPCWSTR szDialogName ) { msi_dialog *dialog = NULL; UINT r = ERROR_SUCCESS; if( preview->dialog ) msi_dialog_destroy( preview->dialog ); /* an empty name means we should just destroy the current preview dialog */ if( szDialogName ) { dialog = msi_dialog_create( preview->package, szDialogName, preview_event_handler ); if( dialog ) msi_dialog_do_preview( dialog ); else r = ERROR_FUNCTION_FAILED; } preview->dialog = dialog; return r; } UINT WINAPI MsiPreviewDialogW( MSIHANDLE hPreview, LPCWSTR szDialogName ) { MSIPREVIEW *preview; UINT r; TRACE("%ld %s\n", hPreview, debugstr_w(szDialogName)); preview = msihandle2msiinfo( hPreview, MSIHANDLETYPE_PREVIEW ); if( !preview ) return ERROR_INVALID_HANDLE; r = MSI_PreviewDialogW( preview, szDialogName ); msiobj_release( &preview->hdr ); return r; } UINT WINAPI MsiPreviewDialogA( MSIHANDLE hPreview, LPCSTR szDialogName ) { UINT r; LPWSTR strW = NULL; TRACE("%ld %s\n", hPreview, debugstr_a(szDialogName)); if( szDialogName ) { strW = strdupAtoW( szDialogName ); if( !strW ) return ERROR_OUTOFMEMORY; } r = MsiPreviewDialogW( hPreview, strW ); msi_free( strW ); return r; } UINT WINAPI MsiPreviewBillboardW( MSIHANDLE hPreview, LPCWSTR szControlName, LPCWSTR szBillboard) { FIXME("%ld %s %s\n", hPreview, debugstr_w(szControlName), debugstr_w(szBillboard)); return ERROR_CALL_NOT_IMPLEMENTED; } UINT WINAPI MsiPreviewBillboardA( MSIHANDLE hPreview, LPCSTR szControlName, LPCSTR szBillboard) { FIXME("%ld %s %s\n", hPreview, debugstr_a(szControlName), debugstr_a(szBillboard)); return ERROR_CALL_NOT_IMPLEMENTED; }