2008-07-24 22:57:28 +02:00
|
|
|
/*
|
|
|
|
* Add/Remove Programs applet
|
|
|
|
* Partially based on Wine Uninstaller
|
|
|
|
*
|
|
|
|
* Copyright 2000 Andreas Mohr
|
|
|
|
* Copyright 2004 Hannu Valtonen
|
|
|
|
* Copyright 2005 Jonathan Ernst
|
|
|
|
* Copyright 2001-2002, 2008 Owen Rudge
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-07-26 19:11:37 +02:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
|
2008-07-24 22:57:28 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winreg.h>
|
|
|
|
#include <shellapi.h>
|
2008-07-21 20:42:07 +02:00
|
|
|
#include <commctrl.h>
|
2009-06-21 17:05:41 +02:00
|
|
|
#include <commdlg.h>
|
2008-07-24 22:57:28 +02:00
|
|
|
#include <cpl.h>
|
|
|
|
|
|
|
|
#include "res.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(appwizcpl);
|
|
|
|
|
2008-07-21 20:42:07 +02:00
|
|
|
/* define a maximum length for various buffers we use */
|
|
|
|
#define MAX_STRING_LEN 1024
|
|
|
|
|
2008-07-21 20:42:25 +02:00
|
|
|
typedef struct APPINFO {
|
|
|
|
int id;
|
|
|
|
|
|
|
|
LPWSTR title;
|
|
|
|
LPWSTR path;
|
|
|
|
|
|
|
|
LPWSTR icon;
|
|
|
|
int iconIdx;
|
|
|
|
|
|
|
|
LPWSTR publisher;
|
|
|
|
LPWSTR version;
|
|
|
|
|
|
|
|
HKEY regroot;
|
|
|
|
WCHAR regkey[MAX_STRING_LEN];
|
|
|
|
|
|
|
|
struct APPINFO *next;
|
|
|
|
} APPINFO;
|
|
|
|
|
|
|
|
static struct APPINFO *AppInfo = NULL;
|
2008-07-24 22:57:28 +02:00
|
|
|
static HINSTANCE hInst;
|
|
|
|
|
2009-06-21 17:05:41 +02:00
|
|
|
static const WCHAR openW[] = {'o','p','e','n',0};
|
|
|
|
|
2008-07-21 20:42:25 +02:00
|
|
|
/* names of registry keys */
|
|
|
|
static const WCHAR BackSlashW[] = { '\\', 0 };
|
|
|
|
static const WCHAR DisplayNameW[] = {'D','i','s','p','l','a','y','N','a','m','e',0};
|
|
|
|
static const WCHAR DisplayIconW[] = {'D','i','s','p','l','a','y','I','c','o','n',0};
|
|
|
|
static const WCHAR DisplayVersionW[] = {'D','i','s','p','l','a','y','V','e','r',
|
|
|
|
's','i','o','n',0};
|
|
|
|
static const WCHAR PublisherW[] = {'P','u','b','l','i','s','h','e','r',0};
|
2008-07-28 16:16:35 +02:00
|
|
|
static const WCHAR ContactW[] = {'C','o','n','t','a','c','t',0};
|
|
|
|
static const WCHAR HelpLinkW[] = {'H','e','l','p','L','i','n','k',0};
|
|
|
|
static const WCHAR HelpTelephoneW[] = {'H','e','l','p','T','e','l','e','p','h',
|
|
|
|
'o','n','e',0};
|
|
|
|
static const WCHAR ReadmeW[] = {'R','e','a','d','m','e',0};
|
|
|
|
static const WCHAR URLUpdateInfoW[] = {'U','R','L','U','p','d','a','t','e','I',
|
|
|
|
'n','f','o',0};
|
|
|
|
static const WCHAR CommentsW[] = {'C','o','m','m','e','n','t','s',0};
|
2008-07-21 20:42:25 +02:00
|
|
|
static const WCHAR UninstallCommandlineW[] = {'U','n','i','n','s','t','a','l','l',
|
|
|
|
'S','t','r','i','n','g',0};
|
|
|
|
|
|
|
|
static const WCHAR PathUninstallW[] = {
|
|
|
|
'S','o','f','t','w','a','r','e','\\',
|
|
|
|
'M','i','c','r','o','s','o','f','t','\\',
|
|
|
|
'W','i','n','d','o','w','s','\\',
|
|
|
|
'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
|
|
|
|
'U','n','i','n','s','t','a','l','l',0 };
|
|
|
|
|
2008-07-24 22:57:28 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : DllMain
|
|
|
|
* Description: Entry point for DLL file
|
|
|
|
*/
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
|
|
|
|
LPVOID lpvReserved)
|
|
|
|
{
|
|
|
|
TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
|
|
|
|
|
|
|
|
switch (fdwReason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
hInst = hinstDLL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:25 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : FreeAppInfo
|
|
|
|
* Description: Frees memory used by an AppInfo structure, and any children.
|
|
|
|
*/
|
|
|
|
static void FreeAppInfo(APPINFO *info)
|
|
|
|
{
|
2008-07-25 16:41:38 +02:00
|
|
|
while (info)
|
2008-07-21 20:42:25 +02:00
|
|
|
{
|
2008-07-25 16:41:38 +02:00
|
|
|
APPINFO *next_info = info->next;
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, info->title);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info->path);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info->icon);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info->publisher);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info->version);
|
|
|
|
HeapFree(GetProcessHeap(), 0, info);
|
|
|
|
info = next_info;
|
2008-07-21 20:42:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Name : ReadApplicationsFromRegistry
|
|
|
|
* Description: Creates a linked list of uninstallable applications from the
|
|
|
|
* registry.
|
|
|
|
* Parameters : root - Which registry root to read from (HKCU/HKLM)
|
|
|
|
* Returns : TRUE if successful, FALSE otherwise
|
|
|
|
*/
|
|
|
|
static BOOL ReadApplicationsFromRegistry(HKEY root)
|
|
|
|
{
|
|
|
|
HKEY hkeyUninst, hkeyApp;
|
|
|
|
int i, id = 0;
|
|
|
|
DWORD sizeOfSubKeyName, displen, uninstlen;
|
|
|
|
WCHAR subKeyName[256];
|
|
|
|
WCHAR key_app[MAX_STRING_LEN];
|
|
|
|
WCHAR *p;
|
|
|
|
APPINFO *iter = AppInfo;
|
|
|
|
LPWSTR iconPtr;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
|
|
|
|
if (RegOpenKeyExW(root, PathUninstallW, 0, KEY_READ, &hkeyUninst) !=
|
|
|
|
ERROR_SUCCESS)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
lstrcpyW(key_app, PathUninstallW);
|
|
|
|
lstrcatW(key_app, BackSlashW);
|
|
|
|
p = key_app+lstrlenW(PathUninstallW)+1;
|
|
|
|
|
|
|
|
sizeOfSubKeyName = sizeof(subKeyName) / sizeof(subKeyName[0]);
|
|
|
|
|
|
|
|
if (iter)
|
|
|
|
{
|
|
|
|
/* find the end of the list */
|
|
|
|
for (iter = AppInfo; iter->next; iter = iter->next);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; RegEnumKeyExW(hkeyUninst, i, subKeyName, &sizeOfSubKeyName, NULL,
|
|
|
|
NULL, NULL, NULL) != ERROR_NO_MORE_ITEMS; ++i)
|
|
|
|
{
|
|
|
|
lstrcpyW(p, subKeyName);
|
|
|
|
RegOpenKeyExW(root, key_app, 0, KEY_READ, &hkeyApp);
|
|
|
|
|
|
|
|
displen = 0;
|
|
|
|
uninstlen = 0;
|
|
|
|
|
|
|
|
if ((RegQueryValueExW(hkeyApp, DisplayNameW, 0, 0, NULL, &displen) ==
|
|
|
|
ERROR_SUCCESS) && (RegQueryValueExW(hkeyApp, UninstallCommandlineW,
|
|
|
|
0, 0, NULL, &uninstlen) == ERROR_SUCCESS))
|
|
|
|
{
|
|
|
|
/* if we already have iter, allocate the next entry */
|
|
|
|
if (iter)
|
|
|
|
{
|
|
|
|
iter->next = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
sizeof(struct APPINFO));
|
|
|
|
|
|
|
|
if (!iter->next)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
iter = iter->next;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* if not, start the list */
|
|
|
|
iter = AppInfo = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
sizeof(struct APPINFO));
|
|
|
|
|
|
|
|
if (!iter)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
iter->title = HeapAlloc(GetProcessHeap(), 0, displen);
|
|
|
|
|
|
|
|
if (!iter->title)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
RegQueryValueExW(hkeyApp, DisplayNameW, 0, 0, (LPBYTE)iter->title,
|
|
|
|
&displen);
|
|
|
|
|
|
|
|
/* now get DisplayIcon */
|
|
|
|
displen = 0;
|
|
|
|
RegQueryValueExW(hkeyApp, DisplayIconW, 0, 0, NULL, &displen);
|
|
|
|
|
|
|
|
if (displen == 0)
|
|
|
|
iter->icon = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
iter->icon = HeapAlloc(GetProcessHeap(), 0, displen);
|
|
|
|
|
|
|
|
if (!iter->icon)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
RegQueryValueExW(hkeyApp, DisplayIconW, 0, 0, (LPBYTE)iter->icon,
|
|
|
|
&displen);
|
|
|
|
|
|
|
|
/* separate the index from the icon name, if supplied */
|
|
|
|
iconPtr = strchrW(iter->icon, ',');
|
|
|
|
|
|
|
|
if (iconPtr)
|
|
|
|
{
|
|
|
|
*iconPtr++ = 0;
|
|
|
|
iter->iconIdx = atoiW(iconPtr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
iter->path = HeapAlloc(GetProcessHeap(), 0, uninstlen);
|
|
|
|
|
|
|
|
if (!iter->path)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
RegQueryValueExW(hkeyApp, UninstallCommandlineW, 0, 0,
|
|
|
|
(LPBYTE)iter->path, &uninstlen);
|
|
|
|
|
|
|
|
/* publisher, version */
|
|
|
|
if (RegQueryValueExW(hkeyApp, PublisherW, 0, 0, NULL, &displen) ==
|
|
|
|
ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
iter->publisher = HeapAlloc(GetProcessHeap(), 0, displen);
|
|
|
|
|
|
|
|
if (!iter->publisher)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
RegQueryValueExW(hkeyApp, PublisherW, 0, 0, (LPBYTE)iter->publisher,
|
|
|
|
&displen);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (RegQueryValueExW(hkeyApp, DisplayVersionW, 0, 0, NULL, &displen) ==
|
|
|
|
ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
iter->version = HeapAlloc(GetProcessHeap(), 0, displen);
|
|
|
|
|
|
|
|
if (!iter->version)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
RegQueryValueExW(hkeyApp, DisplayVersionW, 0, 0, (LPBYTE)iter->version,
|
|
|
|
&displen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* registry key */
|
|
|
|
iter->regroot = root;
|
|
|
|
lstrcpyW(iter->regkey, subKeyName);
|
|
|
|
|
|
|
|
iter->id = id++;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(hkeyApp);
|
|
|
|
sizeOfSubKeyName = sizeof(subKeyName) / sizeof(subKeyName[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
err:
|
|
|
|
RegCloseKey(hkeyApp);
|
|
|
|
FreeAppInfo(iter);
|
|
|
|
|
|
|
|
end:
|
|
|
|
RegCloseKey(hkeyUninst);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:30 +02:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Name : AddApplicationsToList
|
|
|
|
* Description: Populates the list box with applications.
|
|
|
|
* Parameters : hWnd - Handle of the dialog box
|
|
|
|
*/
|
|
|
|
static void AddApplicationsToList(HWND hWnd, HIMAGELIST hList)
|
|
|
|
{
|
|
|
|
APPINFO *iter = AppInfo;
|
|
|
|
LVITEMW lvItem;
|
|
|
|
HICON hIcon;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
while (iter)
|
|
|
|
{
|
|
|
|
/* get the icon */
|
|
|
|
index = 0;
|
|
|
|
|
|
|
|
if (iter->icon)
|
|
|
|
{
|
|
|
|
if (ExtractIconExW(iter->icon, iter->iconIdx, NULL, &hIcon, 1) == 1)
|
|
|
|
{
|
|
|
|
index = ImageList_AddIcon(hList, hIcon);
|
|
|
|
DestroyIcon(hIcon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lvItem.mask = LVIF_IMAGE | LVIF_TEXT | LVIF_PARAM;
|
|
|
|
lvItem.iItem = iter->id;
|
|
|
|
lvItem.iSubItem = 0;
|
|
|
|
lvItem.pszText = iter->title;
|
|
|
|
lvItem.iImage = index;
|
|
|
|
lvItem.lParam = iter->id;
|
|
|
|
|
|
|
|
index = ListView_InsertItemW(hWnd, &lvItem);
|
|
|
|
|
|
|
|
/* now add the subitems (columns) */
|
|
|
|
ListView_SetItemTextW(hWnd, index, 1, iter->publisher);
|
|
|
|
ListView_SetItemTextW(hWnd, index, 2, iter->version);
|
|
|
|
|
|
|
|
iter = iter->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Name : RemoveItemsFromList
|
|
|
|
* Description: Clears the application list box.
|
|
|
|
* Parameters : hWnd - Handle of the dialog box
|
|
|
|
*/
|
|
|
|
static void RemoveItemsFromList(HWND hWnd)
|
|
|
|
{
|
|
|
|
SendDlgItemMessageW(hWnd, IDL_PROGRAMS, LVM_DELETEALLITEMS, 0, 0);
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:25 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : EmptyList
|
|
|
|
* Description: Frees memory used by the application linked list.
|
|
|
|
*/
|
|
|
|
static inline void EmptyList(void)
|
|
|
|
{
|
|
|
|
FreeAppInfo(AppInfo);
|
|
|
|
AppInfo = NULL;
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:21 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : UpdateButtons
|
|
|
|
* Description: Enables/disables the Add/Remove button depending on current
|
|
|
|
* selection in list box.
|
|
|
|
* Parameters : hWnd - Handle of the dialog box
|
|
|
|
*/
|
|
|
|
static void UpdateButtons(HWND hWnd)
|
|
|
|
{
|
2009-05-10 10:11:53 +02:00
|
|
|
BOOL sel = SendMessageW(GetDlgItem(hWnd, IDL_PROGRAMS), LVM_GETSELECTEDCOUNT, 0, 0) != 0;
|
2008-07-21 20:42:21 +02:00
|
|
|
|
|
|
|
EnableWindow(GetDlgItem(hWnd, IDC_ADDREMOVE), sel);
|
|
|
|
EnableWindow(GetDlgItem(hWnd, IDC_SUPPORT_INFO), sel);
|
|
|
|
}
|
|
|
|
|
2009-06-21 17:05:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : InstallProgram
|
|
|
|
* Description: Search for potential Installer and execute it.
|
|
|
|
* Parameters : hWnd - Handle of the dialog box
|
|
|
|
*/
|
|
|
|
static void InstallProgram(HWND hWnd)
|
|
|
|
{
|
|
|
|
OPENFILENAMEW ofn;
|
|
|
|
WCHAR titleW[MAX_STRING_LEN];
|
|
|
|
WCHAR FilterBufferW[MAX_STRING_LEN];
|
|
|
|
WCHAR FileNameBufferW[MAX_PATH];
|
|
|
|
|
|
|
|
LoadStringW(hInst, IDS_CPL_TITLE, titleW, sizeof(titleW)/sizeof(WCHAR));
|
|
|
|
LoadStringW(hInst, IDS_INSTALL_FILTER, FilterBufferW, sizeof(FilterBufferW)/sizeof(WCHAR));
|
|
|
|
|
|
|
|
memset(&ofn, 0, sizeof(OPENFILENAMEW));
|
|
|
|
ofn.lStructSize = sizeof(OPENFILENAMEW);
|
|
|
|
ofn.hwndOwner = hWnd;
|
|
|
|
ofn.hInstance = hInst;
|
|
|
|
ofn.lpstrFilter = FilterBufferW;
|
|
|
|
ofn.nFilterIndex = 0;
|
|
|
|
ofn.lpstrFile = FileNameBufferW;
|
|
|
|
ofn.nMaxFile = MAX_PATH;
|
|
|
|
ofn.lpstrFileTitle = NULL;
|
|
|
|
ofn.nMaxFileTitle = 0;
|
|
|
|
ofn.lpstrTitle = titleW;
|
|
|
|
ofn.Flags = OFN_HIDEREADONLY | OFN_ENABLESIZING;
|
|
|
|
FileNameBufferW[0] = 0;
|
|
|
|
|
|
|
|
if (GetOpenFileNameW(&ofn))
|
|
|
|
{
|
|
|
|
SHELLEXECUTEINFOW sei;
|
|
|
|
memset(&sei, 0, sizeof(sei));
|
|
|
|
sei.cbSize = sizeof(sei);
|
|
|
|
sei.lpVerb = openW;
|
|
|
|
sei.nShow = SW_SHOWDEFAULT;
|
|
|
|
sei.fMask = SEE_MASK_NO_CONSOLE;
|
|
|
|
sei.lpFile = ofn.lpstrFile;
|
|
|
|
|
|
|
|
ShellExecuteExW(&sei);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:38 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : UninstallProgram
|
|
|
|
* Description: Executes the specified program's installer.
|
|
|
|
* Parameters : id - the internal ID of the installer to remove
|
|
|
|
*/
|
|
|
|
static void UninstallProgram(int id)
|
|
|
|
{
|
|
|
|
APPINFO *iter;
|
|
|
|
STARTUPINFOW si;
|
|
|
|
PROCESS_INFORMATION info;
|
|
|
|
WCHAR errormsg[MAX_STRING_LEN];
|
|
|
|
WCHAR sUninstallFailed[MAX_STRING_LEN];
|
|
|
|
HKEY hkey;
|
|
|
|
BOOL res;
|
|
|
|
|
|
|
|
LoadStringW(hInst, IDS_UNINSTALL_FAILED, sUninstallFailed,
|
|
|
|
sizeof(sUninstallFailed) / sizeof(sUninstallFailed[0]));
|
|
|
|
|
|
|
|
for (iter = AppInfo; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
if (iter->id == id)
|
|
|
|
{
|
|
|
|
TRACE("Uninstalling %s (%s)\n", wine_dbgstr_w(iter->title),
|
|
|
|
wine_dbgstr_w(iter->path));
|
|
|
|
|
|
|
|
memset(&si, 0, sizeof(STARTUPINFOW));
|
|
|
|
si.cb = sizeof(STARTUPINFOW);
|
|
|
|
si.wShowWindow = SW_NORMAL;
|
|
|
|
res = CreateProcessW(NULL, iter->path, NULL, NULL, FALSE, 0, NULL,
|
|
|
|
NULL, &si, &info);
|
|
|
|
|
|
|
|
if (res)
|
|
|
|
{
|
2008-08-17 19:26:21 +02:00
|
|
|
CloseHandle(info.hThread);
|
|
|
|
|
2008-07-21 20:42:38 +02:00
|
|
|
/* wait for the process to exit */
|
|
|
|
WaitForSingleObject(info.hProcess, INFINITE);
|
2008-08-17 19:26:21 +02:00
|
|
|
CloseHandle(info.hProcess);
|
2008-07-21 20:42:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wsprintfW(errormsg, sUninstallFailed, iter->path);
|
|
|
|
|
|
|
|
if (MessageBoxW(0, errormsg, iter->title, MB_YESNO |
|
|
|
|
MB_ICONQUESTION) == IDYES)
|
|
|
|
{
|
|
|
|
/* delete the application's uninstall entry */
|
|
|
|
RegOpenKeyExW(iter->regroot, PathUninstallW, 0, KEY_READ, &hkey);
|
|
|
|
RegDeleteKeyW(hkey, iter->regkey);
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-28 16:16:35 +02:00
|
|
|
/**********************************************************************************
|
|
|
|
* Name : SetInfoDialogText
|
|
|
|
* Description: Sets the text of a label in a window, based upon a registry entry
|
|
|
|
* or string passed to the function.
|
|
|
|
* Parameters : hKey - registry entry to read from, NULL if not reading
|
|
|
|
* from registry
|
|
|
|
* lpKeyName - key to read from, or string to check if hKey is NULL
|
|
|
|
* lpAltMessage - alternative message if entry not found
|
|
|
|
* hWnd - handle of dialog box
|
|
|
|
* iDlgItem - ID of label in dialog box
|
|
|
|
*/
|
|
|
|
static void SetInfoDialogText(HKEY hKey, LPWSTR lpKeyName, LPWSTR lpAltMessage,
|
|
|
|
HWND hWnd, int iDlgItem)
|
|
|
|
{
|
|
|
|
WCHAR buf[MAX_STRING_LEN];
|
|
|
|
DWORD buflen;
|
|
|
|
HWND hWndDlgItem;
|
|
|
|
|
|
|
|
hWndDlgItem = GetDlgItem(hWnd, iDlgItem);
|
|
|
|
|
|
|
|
/* if hKey is null, lpKeyName contains the string we want to check */
|
|
|
|
if (hKey == NULL)
|
|
|
|
{
|
|
|
|
if ((lpKeyName) && (lstrlenW(lpKeyName) > 0))
|
|
|
|
SetWindowTextW(hWndDlgItem, lpKeyName);
|
|
|
|
else
|
|
|
|
SetWindowTextW(hWndDlgItem, lpAltMessage);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buflen = MAX_STRING_LEN;
|
|
|
|
|
|
|
|
if ((RegQueryValueExW(hKey, lpKeyName, 0, 0, (LPBYTE) buf, &buflen) ==
|
|
|
|
ERROR_SUCCESS) && (lstrlenW(buf) > 0))
|
|
|
|
SetWindowTextW(hWndDlgItem, buf);
|
|
|
|
else
|
|
|
|
SetWindowTextW(hWndDlgItem, lpAltMessage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:44:02 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : SupportInfoDlgProc
|
|
|
|
* Description: Callback procedure for support info dialog
|
|
|
|
* Parameters : hWnd - hWnd of the window
|
|
|
|
* msg - reason for calling function
|
|
|
|
* wParam - additional parameter
|
|
|
|
* lParam - additional parameter
|
|
|
|
* Returns : Dependant on message
|
|
|
|
*/
|
|
|
|
static BOOL CALLBACK SupportInfoDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
APPINFO *iter;
|
2008-07-28 16:16:35 +02:00
|
|
|
HKEY hkey;
|
2008-07-21 20:44:02 +02:00
|
|
|
WCHAR oldtitle[MAX_STRING_LEN];
|
|
|
|
WCHAR buf[MAX_STRING_LEN];
|
2008-07-28 16:16:35 +02:00
|
|
|
WCHAR key[MAX_STRING_LEN];
|
|
|
|
WCHAR notfound[MAX_STRING_LEN];
|
2008-07-21 20:44:02 +02:00
|
|
|
|
|
|
|
switch(msg)
|
|
|
|
{
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
for (iter = AppInfo; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
if (iter->id == (int) lParam)
|
|
|
|
{
|
2008-07-28 16:16:35 +02:00
|
|
|
lstrcpyW(key, PathUninstallW);
|
|
|
|
lstrcatW(key, BackSlashW);
|
|
|
|
lstrcatW(key, iter->regkey);
|
|
|
|
|
|
|
|
/* check the application's registry entries */
|
|
|
|
RegOpenKeyExW(iter->regroot, key, 0, KEY_READ, &hkey);
|
|
|
|
|
|
|
|
/* Load our "not specified" string */
|
|
|
|
LoadStringW(hInst, IDS_NOT_SPECIFIED, notfound,
|
|
|
|
sizeof(notfound) / sizeof(notfound[0]));
|
|
|
|
|
|
|
|
/* Update the data for items already read into the structure */
|
|
|
|
SetInfoDialogText(NULL, iter->publisher, notfound, hWnd,
|
|
|
|
IDC_INFO_PUBLISHER);
|
|
|
|
SetInfoDialogText(NULL, iter->version, notfound, hWnd,
|
|
|
|
IDC_INFO_VERSION);
|
|
|
|
|
|
|
|
/* And now update the data for those items in the registry */
|
|
|
|
SetInfoDialogText(hkey, (LPWSTR) ContactW, notfound, hWnd,
|
|
|
|
IDC_INFO_CONTACT);
|
|
|
|
SetInfoDialogText(hkey, (LPWSTR) HelpLinkW, notfound, hWnd,
|
|
|
|
IDC_INFO_SUPPORT);
|
|
|
|
SetInfoDialogText(hkey, (LPWSTR) HelpTelephoneW, notfound, hWnd,
|
|
|
|
IDC_INFO_PHONE);
|
|
|
|
SetInfoDialogText(hkey, (LPWSTR) ReadmeW, notfound, hWnd,
|
|
|
|
IDC_INFO_README);
|
|
|
|
SetInfoDialogText(hkey, (LPWSTR) URLUpdateInfoW, notfound, hWnd,
|
|
|
|
IDC_INFO_UPDATES);
|
|
|
|
SetInfoDialogText(hkey, (LPWSTR) CommentsW, notfound, hWnd,
|
|
|
|
IDC_INFO_COMMENTS);
|
|
|
|
|
2008-07-21 20:44:02 +02:00
|
|
|
/* Update the main label with the app name */
|
|
|
|
if (GetWindowTextW(GetDlgItem(hWnd, IDC_INFO_LABEL), oldtitle,
|
|
|
|
MAX_STRING_LEN) != 0)
|
|
|
|
{
|
|
|
|
wsprintfW(buf, oldtitle, iter->title);
|
|
|
|
SetWindowTextW(GetDlgItem(hWnd, IDC_INFO_LABEL), buf);
|
|
|
|
}
|
|
|
|
|
2008-07-28 16:16:35 +02:00
|
|
|
RegCloseKey(hkey);
|
|
|
|
|
2008-07-21 20:44:02 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_DESTROY:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam))
|
|
|
|
{
|
|
|
|
case IDOK:
|
|
|
|
EndDialog(hWnd, TRUE);
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Name : SupportInfo
|
|
|
|
* Description: Displays the Support Information dialog
|
|
|
|
* Parameters : hWnd - Handle of the main dialog
|
|
|
|
* id - ID of the application to display information for
|
|
|
|
*/
|
|
|
|
static void SupportInfo(HWND hWnd, int id)
|
|
|
|
{
|
|
|
|
DialogBoxParamW(hInst, MAKEINTRESOURCEW(IDD_INFO), hWnd, (DLGPROC)
|
|
|
|
SupportInfoDlgProc, (LPARAM) id);
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:12 +02:00
|
|
|
/* Definition of column headers for AddListViewColumns function */
|
|
|
|
typedef struct AppWizColumn {
|
|
|
|
int width;
|
|
|
|
int fmt;
|
|
|
|
int title;
|
|
|
|
} AppWizColumn;
|
|
|
|
|
2008-11-12 08:15:32 +01:00
|
|
|
static const AppWizColumn columns[] = {
|
2008-07-21 20:42:12 +02:00
|
|
|
{200, LVCFMT_LEFT, IDS_COLUMN_NAME},
|
|
|
|
{150, LVCFMT_LEFT, IDS_COLUMN_PUBLISHER},
|
|
|
|
{100, LVCFMT_LEFT, IDS_COLUMN_VERSION},
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Name : AddListViewColumns
|
|
|
|
* Description: Adds column headers to the list view control.
|
|
|
|
* Parameters : hWnd - Handle of the list view control.
|
|
|
|
* Returns : TRUE if completed successfully, FALSE otherwise.
|
|
|
|
*/
|
|
|
|
static BOOL AddListViewColumns(HWND hWnd)
|
|
|
|
{
|
|
|
|
WCHAR buf[MAX_STRING_LEN];
|
|
|
|
LVCOLUMNW lvc;
|
2008-07-26 22:46:45 +02:00
|
|
|
UINT i;
|
2008-07-21 20:42:12 +02:00
|
|
|
|
|
|
|
lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_SUBITEM | LVCF_WIDTH;
|
|
|
|
|
|
|
|
/* Add the columns */
|
|
|
|
for (i = 0; i < sizeof(columns) / sizeof(columns[0]); i++)
|
|
|
|
{
|
|
|
|
lvc.iSubItem = i;
|
|
|
|
lvc.pszText = buf;
|
|
|
|
|
|
|
|
/* set width and format */
|
|
|
|
lvc.cx = columns[i].width;
|
|
|
|
lvc.fmt = columns[i].fmt;
|
|
|
|
|
|
|
|
LoadStringW(hInst, columns[i].title, buf, sizeof(buf) / sizeof(buf[0]));
|
|
|
|
|
|
|
|
if (ListView_InsertColumnW(hWnd, i, &lvc) == -1)
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:16 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : AddListViewImageList
|
|
|
|
* Description: Creates an ImageList for the list view control.
|
|
|
|
* Parameters : hWnd - Handle of the list view control.
|
|
|
|
* Returns : Handle of the image list.
|
|
|
|
*/
|
|
|
|
static HIMAGELIST AddListViewImageList(HWND hWnd)
|
|
|
|
{
|
|
|
|
HIMAGELIST hSmall;
|
|
|
|
HICON hDefaultIcon;
|
|
|
|
|
|
|
|
hSmall = ImageList_Create(GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON),
|
|
|
|
ILC_MASK, 1, 1);
|
|
|
|
|
|
|
|
/* Add default icon to image list */
|
|
|
|
hDefaultIcon = LoadIconW(hInst, MAKEINTRESOURCEW(ICO_MAIN));
|
|
|
|
ImageList_AddIcon(hSmall, hDefaultIcon);
|
|
|
|
DestroyIcon(hDefaultIcon);
|
|
|
|
|
2009-05-10 10:11:53 +02:00
|
|
|
SendMessageW(hWnd, LVM_SETIMAGELIST, LVSIL_SMALL, (LPARAM)hSmall);
|
2008-07-21 20:42:16 +02:00
|
|
|
|
|
|
|
return hSmall;
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:12 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : ResetApplicationList
|
|
|
|
* Description: Empties the app list, if need be, and recreates it.
|
|
|
|
* Parameters : bFirstRun - TRUE if this is the first time this is run, FALSE otherwise
|
|
|
|
* hWnd - handle of the dialog box
|
|
|
|
* hImageList - handle of the image list
|
|
|
|
* Returns : New handle of the image list.
|
|
|
|
*/
|
|
|
|
static HIMAGELIST ResetApplicationList(BOOL bFirstRun, HWND hWnd, HIMAGELIST hImageList)
|
|
|
|
{
|
|
|
|
HWND hWndListView;
|
|
|
|
|
|
|
|
hWndListView = GetDlgItem(hWnd, IDL_PROGRAMS);
|
|
|
|
|
|
|
|
/* if first run, create the image list and add the listview columns */
|
|
|
|
if (bFirstRun)
|
|
|
|
{
|
|
|
|
if (!AddListViewColumns(hWndListView))
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-07-21 20:42:16 +02:00
|
|
|
else /* we need to remove the existing things first */
|
|
|
|
{
|
2008-07-21 20:42:30 +02:00
|
|
|
RemoveItemsFromList(hWnd);
|
2008-07-21 20:42:16 +02:00
|
|
|
ImageList_Destroy(hImageList);
|
2008-07-21 20:42:25 +02:00
|
|
|
|
|
|
|
/* reset the list, since it's probably changed if the uninstallation was
|
|
|
|
successful */
|
|
|
|
EmptyList();
|
2008-07-21 20:42:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* now create the image list and add the applications to the listview */
|
|
|
|
hImageList = AddListViewImageList(hWndListView);
|
2008-07-21 20:42:12 +02:00
|
|
|
|
2008-07-21 20:42:25 +02:00
|
|
|
ReadApplicationsFromRegistry(HKEY_LOCAL_MACHINE);
|
|
|
|
ReadApplicationsFromRegistry(HKEY_CURRENT_USER);
|
|
|
|
|
2008-07-21 20:42:30 +02:00
|
|
|
AddApplicationsToList(hWndListView, hImageList);
|
2008-07-21 20:42:21 +02:00
|
|
|
UpdateButtons(hWnd);
|
|
|
|
|
2008-07-21 20:42:12 +02:00
|
|
|
return(hImageList);
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:07 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : MainDlgProc
|
|
|
|
* Description: Callback procedure for main tab
|
|
|
|
* Parameters : hWnd - hWnd of the window
|
|
|
|
* msg - reason for calling function
|
|
|
|
* wParam - additional parameter
|
|
|
|
* lParam - additional parameter
|
|
|
|
* Returns : Dependant on message
|
|
|
|
*/
|
|
|
|
static BOOL CALLBACK MainDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
2008-07-21 20:42:38 +02:00
|
|
|
int selitem;
|
2008-07-21 20:42:12 +02:00
|
|
|
static HIMAGELIST hImageList;
|
2008-07-21 20:42:30 +02:00
|
|
|
LPNMHDR nmh;
|
2008-07-21 20:42:38 +02:00
|
|
|
LVITEMW lvItem;
|
2008-07-21 20:42:12 +02:00
|
|
|
|
|
|
|
switch(msg)
|
|
|
|
{
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
hImageList = ResetApplicationList(TRUE, hWnd, hImageList);
|
|
|
|
|
2008-07-21 20:42:16 +02:00
|
|
|
if (!hImageList)
|
|
|
|
return FALSE;
|
|
|
|
|
2008-07-21 20:42:12 +02:00
|
|
|
return TRUE;
|
2008-07-21 20:42:16 +02:00
|
|
|
|
|
|
|
case WM_DESTROY:
|
2008-07-21 20:42:30 +02:00
|
|
|
RemoveItemsFromList(hWnd);
|
2008-07-21 20:42:16 +02:00
|
|
|
ImageList_Destroy(hImageList);
|
|
|
|
|
2008-07-21 20:42:25 +02:00
|
|
|
EmptyList();
|
|
|
|
|
2008-07-21 20:42:16 +02:00
|
|
|
return 0;
|
2008-07-21 20:42:30 +02:00
|
|
|
|
|
|
|
case WM_NOTIFY:
|
|
|
|
nmh = (LPNMHDR) lParam;
|
|
|
|
|
|
|
|
switch (nmh->idFrom)
|
|
|
|
{
|
|
|
|
case IDL_PROGRAMS:
|
|
|
|
switch (nmh->code)
|
|
|
|
{
|
|
|
|
case LVN_ITEMCHANGED:
|
|
|
|
UpdateButtons(hWnd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:38 +02:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam))
|
|
|
|
{
|
2009-06-21 17:05:41 +02:00
|
|
|
case IDC_INSTALL:
|
|
|
|
InstallProgram(hWnd);
|
|
|
|
break;
|
|
|
|
|
2008-07-21 20:42:38 +02:00
|
|
|
case IDC_ADDREMOVE:
|
|
|
|
selitem = SendDlgItemMessageW(hWnd, IDL_PROGRAMS,
|
|
|
|
LVM_GETNEXTITEM, -1, LVNI_FOCUSED|LVNI_SELECTED);
|
|
|
|
|
|
|
|
if (selitem != -1)
|
|
|
|
{
|
|
|
|
lvItem.iItem = selitem;
|
|
|
|
lvItem.mask = LVIF_PARAM;
|
|
|
|
|
|
|
|
if (SendDlgItemMessageW(hWnd, IDL_PROGRAMS, LVM_GETITEMW,
|
|
|
|
0, (LPARAM) &lvItem))
|
|
|
|
UninstallProgram(lvItem.lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
hImageList = ResetApplicationList(FALSE, hWnd, hImageList);
|
|
|
|
|
2008-07-21 20:44:02 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IDC_SUPPORT_INFO:
|
|
|
|
selitem = SendDlgItemMessageW(hWnd, IDL_PROGRAMS,
|
|
|
|
LVM_GETNEXTITEM, -1, LVNI_FOCUSED | LVNI_SELECTED);
|
|
|
|
|
|
|
|
if (selitem != -1)
|
|
|
|
{
|
|
|
|
lvItem.iItem = selitem;
|
|
|
|
lvItem.mask = LVIF_PARAM;
|
|
|
|
|
|
|
|
if (SendDlgItemMessageW(hWnd, IDL_PROGRAMS, LVM_GETITEMW,
|
|
|
|
0, (LPARAM) &lvItem))
|
|
|
|
SupportInfo(hWnd, lvItem.lParam);
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:38 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:30 +02:00
|
|
|
return TRUE;
|
2008-07-21 20:42:12 +02:00
|
|
|
}
|
|
|
|
|
2008-07-21 20:42:07 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Name : StartApplet
|
|
|
|
* Description: Main routine for applet
|
|
|
|
* Parameters : hWnd - hWnd of the Control Panel
|
|
|
|
*/
|
|
|
|
static void StartApplet(HWND hWnd)
|
|
|
|
{
|
|
|
|
PROPSHEETPAGEW psp;
|
|
|
|
PROPSHEETHEADERW psh;
|
|
|
|
WCHAR tab_title[MAX_STRING_LEN], app_title[MAX_STRING_LEN];
|
|
|
|
|
|
|
|
/* Load the strings we will use */
|
|
|
|
LoadStringW(hInst, IDS_TAB1_TITLE, tab_title, sizeof(tab_title) / sizeof(tab_title[0]));
|
|
|
|
LoadStringW(hInst, IDS_CPL_TITLE, app_title, sizeof(app_title) / sizeof(app_title[0]));
|
|
|
|
|
|
|
|
/* Fill out the PROPSHEETPAGE */
|
|
|
|
psp.dwSize = sizeof (PROPSHEETPAGEW);
|
|
|
|
psp.dwFlags = PSP_USETITLE;
|
|
|
|
psp.hInstance = hInst;
|
2008-07-26 19:11:37 +02:00
|
|
|
psp.u.pszTemplate = MAKEINTRESOURCEW (IDD_MAIN);
|
|
|
|
psp.u2.pszIcon = NULL;
|
2008-07-21 20:42:07 +02:00
|
|
|
psp.pfnDlgProc = (DLGPROC) MainDlgProc;
|
|
|
|
psp.pszTitle = tab_title;
|
|
|
|
psp.lParam = 0;
|
|
|
|
|
|
|
|
/* Fill out the PROPSHEETHEADER */
|
|
|
|
psh.dwSize = sizeof (PROPSHEETHEADERW);
|
|
|
|
psh.dwFlags = PSH_PROPSHEETPAGE | PSH_USEICONID;
|
|
|
|
psh.hwndParent = hWnd;
|
|
|
|
psh.hInstance = hInst;
|
2008-07-26 19:11:37 +02:00
|
|
|
psh.u.pszIcon = NULL;
|
2008-07-21 20:42:07 +02:00
|
|
|
psh.pszCaption = app_title;
|
|
|
|
psh.nPages = 1;
|
2008-07-26 19:11:37 +02:00
|
|
|
psh.u3.ppsp = &psp;
|
2008-07-21 20:42:07 +02:00
|
|
|
psh.pfnCallback = NULL;
|
2008-07-26 19:11:37 +02:00
|
|
|
psh.u2.nStartPage = 0;
|
2008-07-21 20:42:07 +02:00
|
|
|
|
|
|
|
/* Display the property sheet */
|
|
|
|
PropertySheetW (&psh);
|
|
|
|
}
|
|
|
|
|
2008-07-24 22:57:28 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Name : CPlApplet
|
|
|
|
* Description: Entry point for Control Panel applets
|
|
|
|
* Parameters : hwndCPL - hWnd of the Control Panel
|
|
|
|
* message - reason for calling function
|
|
|
|
* lParam1 - additional parameter
|
|
|
|
* lParam2 - additional parameter
|
|
|
|
* Returns : Dependant on message
|
|
|
|
*/
|
|
|
|
LONG CALLBACK CPlApplet(HWND hwndCPL, UINT message, LPARAM lParam1, LPARAM lParam2)
|
|
|
|
{
|
2008-07-21 20:42:07 +02:00
|
|
|
INITCOMMONCONTROLSEX iccEx;
|
|
|
|
|
2008-07-24 22:57:28 +02:00
|
|
|
switch (message)
|
|
|
|
{
|
|
|
|
case CPL_INIT:
|
2008-07-21 20:42:07 +02:00
|
|
|
iccEx.dwSize = sizeof(iccEx);
|
|
|
|
iccEx.dwICC = ICC_LISTVIEW_CLASSES | ICC_TAB_CLASSES;
|
|
|
|
|
|
|
|
InitCommonControlsEx(&iccEx);
|
|
|
|
|
2008-07-24 22:57:28 +02:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case CPL_GETCOUNT:
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case CPL_INQUIRE:
|
|
|
|
{
|
|
|
|
CPLINFO *appletInfo = (CPLINFO *) lParam2;
|
|
|
|
|
|
|
|
appletInfo->idIcon = ICO_MAIN;
|
|
|
|
appletInfo->idName = IDS_CPL_TITLE;
|
|
|
|
appletInfo->idInfo = IDS_CPL_DESC;
|
|
|
|
appletInfo->lData = 0;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2008-07-21 20:42:07 +02:00
|
|
|
|
|
|
|
case CPL_DBLCLK:
|
|
|
|
StartApplet(hwndCPL);
|
|
|
|
break;
|
2008-07-24 22:57:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|