2011-11-13 20:53:23 +00:00
|
|
|
/*
|
2011-11-19 19:08:23 +00:00
|
|
|
* Rufus: The Reliable USB Formatting Utility
|
2011-11-13 20:53:23 +00:00
|
|
|
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
|
2011-11-18 01:58:08 +00:00
|
|
|
*
|
|
|
|
* Device enumeration based in part on TestUSBDriveEject.cpp by ahmd:
|
|
|
|
* http://www.codeguru.com/forum/showpost.php?p=1951973&postcount=7
|
2011-11-13 20:53:23 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <windowsx.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <commctrl.h>
|
2011-11-17 01:43:06 +00:00
|
|
|
#include <setupapi.h>
|
2011-11-20 02:34:15 +00:00
|
|
|
#include <winioctl.h>
|
2011-11-18 01:58:08 +00:00
|
|
|
// TODO: MinGW32 requires <ddk/ntddscsi.h>
|
2011-11-17 01:43:06 +00:00
|
|
|
#include <ntddscsi.h>
|
2011-11-18 21:46:34 +00:00
|
|
|
// http://doc.sch130.nsc.ru/www.sysinternals.com/ntw2k/source/fmifs.shtml
|
|
|
|
// http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/libs/fmifs/
|
|
|
|
//#include <fmifs.h>
|
|
|
|
// http://git.kernel.org/?p=fs/ext2/e2fsprogs.git;a=blob;f=misc/badblocks.c
|
2011-11-13 20:53:23 +00:00
|
|
|
|
2011-11-19 00:58:13 +00:00
|
|
|
// TODO: publicize the link and license for USB icon:
|
|
|
|
// http://www.softicons.com/free-icons/computer-icons/icons-unleashed-vol-1-by-pc-unleashed/usb-icon
|
|
|
|
|
2011-11-13 20:53:23 +00:00
|
|
|
#include "msapi_utf8.h"
|
|
|
|
#include "resource.h"
|
2011-11-19 19:08:23 +00:00
|
|
|
#include "rufus.h"
|
2011-11-13 20:53:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
2011-11-18 23:41:28 +00:00
|
|
|
static HINSTANCE hMainInstance;
|
2011-11-19 01:30:20 +00:00
|
|
|
static HWND hDialog, hDeviceList, hCapacity, hFileSystem;
|
2011-11-17 01:43:06 +00:00
|
|
|
|
2011-11-19 19:08:23 +00:00
|
|
|
#ifdef RUFUS_DEBUG
|
2011-11-17 01:43:06 +00:00
|
|
|
static void _uprintf(const char *format, ...)
|
|
|
|
{
|
|
|
|
char buf[4096], *p = buf;
|
|
|
|
va_list args;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
va_start(args, format);
|
|
|
|
n = safe_vsnprintf(p, sizeof(buf)-3, format, args); // buf-3 is room for CR/LF/NUL
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
p += (n < 0)?sizeof(buf)-3:n;
|
|
|
|
|
|
|
|
while((p>buf) && (isspace(p[-1])))
|
|
|
|
*--p = '\0';
|
|
|
|
|
|
|
|
*p++ = '\r';
|
|
|
|
*p++ = '\n';
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
OutputDebugStringA(buf);
|
|
|
|
}
|
|
|
|
#define uprintf(...) _uprintf(__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define uprintf(...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Converts a windows error to human readable string
|
|
|
|
* uses retval as errorcode, or, if 0, use GetLastError()
|
|
|
|
*/
|
|
|
|
static char *WindowsErrorString(DWORD retval)
|
|
|
|
{
|
|
|
|
static char err_string[256];
|
|
|
|
|
|
|
|
DWORD size;
|
|
|
|
DWORD error_code, format_error;
|
|
|
|
|
|
|
|
error_code = retval?retval:GetLastError();
|
|
|
|
|
|
|
|
safe_sprintf(err_string, sizeof(err_string), "[%d] ", error_code);
|
|
|
|
|
|
|
|
size = FormatMessageU(FORMAT_MESSAGE_FROM_SYSTEM, NULL, error_code,
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), &err_string[strlen(err_string)],
|
|
|
|
sizeof(err_string)-(DWORD)strlen(err_string), NULL);
|
|
|
|
if (size == 0) {
|
|
|
|
format_error = GetLastError();
|
|
|
|
if (format_error)
|
|
|
|
safe_sprintf(err_string, sizeof(err_string),
|
|
|
|
"Windows error code %u (FormatMessage error code %u)", error_code, format_error);
|
|
|
|
else
|
|
|
|
safe_sprintf(err_string, sizeof(err_string), "Unknown error code %u", error_code);
|
|
|
|
}
|
|
|
|
return err_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-11-18 21:46:34 +00:00
|
|
|
* Opens a drive return both the handle and the drive letter
|
2011-11-17 01:43:06 +00:00
|
|
|
*/
|
2011-11-18 21:46:34 +00:00
|
|
|
static BOOL GetDriveHandle(DWORD num, HANDLE* hDrive, char* DriveLetter)
|
2011-11-17 01:43:06 +00:00
|
|
|
{
|
2011-11-18 01:58:08 +00:00
|
|
|
BOOL r;
|
2011-11-17 01:43:06 +00:00
|
|
|
DWORD size;
|
|
|
|
STORAGE_DEVICE_NUMBER sdn = {0};
|
2011-11-18 21:46:34 +00:00
|
|
|
static char drives[26*4]; /* "D:\", "E:\", etc. */
|
2011-11-17 01:43:06 +00:00
|
|
|
char *drive = drives;
|
|
|
|
char drive_name[] = "\\\\.\\#:";
|
|
|
|
|
|
|
|
size = GetLogicalDriveStringsA(sizeof(drives), drives);
|
|
|
|
if (size == 0) {
|
|
|
|
uprintf("GetLogicalDriveStrings failed: %s\n", WindowsErrorString(0));
|
2011-11-18 21:46:34 +00:00
|
|
|
return FALSE;
|
2011-11-17 01:43:06 +00:00
|
|
|
}
|
|
|
|
if (size > sizeof(drives)) {
|
|
|
|
uprintf("GetLogicalDriveStrings: buffer too small (required %d vs %d)\n", size, sizeof(drives));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-11-18 21:46:34 +00:00
|
|
|
*hDrive = INVALID_HANDLE_VALUE;
|
2011-11-17 01:43:06 +00:00
|
|
|
for ( ;*drive; drive += safe_strlen(drive)+1) {
|
|
|
|
if (*drive < 'C') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
safe_sprintf(drive_name, sizeof(drive_name), "\\\\.\\%c:", drive[0]);
|
2011-11-18 21:46:34 +00:00
|
|
|
*hDrive = CreateFileA(drive_name, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, 0);
|
2011-11-17 01:43:06 +00:00
|
|
|
if (hDrive == INVALID_HANDLE_VALUE) {
|
|
|
|
uprintf("Could not open drive %c: %s\n", WindowsErrorString(0));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-11-18 21:46:34 +00:00
|
|
|
r = DeviceIoControl(*hDrive, IOCTL_STORAGE_GET_DEVICE_NUMBER, NULL,
|
2011-11-17 01:43:06 +00:00
|
|
|
0, &sdn, sizeof(sdn), &size, NULL);
|
|
|
|
if ((!r) || (size <= 0)) {
|
2011-11-19 00:58:13 +00:00
|
|
|
uprintf("IOCTL_STORAGE_GET_DEVICE_NUMBER failed: %s\n", WindowsErrorString(0));
|
2011-11-18 21:46:34 +00:00
|
|
|
safe_closehandle(*hDrive);
|
|
|
|
break;
|
2011-11-17 01:43:06 +00:00
|
|
|
}
|
|
|
|
if (sdn.DeviceNumber == num)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-11-18 21:46:34 +00:00
|
|
|
if (DriveLetter != NULL) {
|
|
|
|
*DriveLetter = *drive;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (*hDrive != INVALID_HANDLE_VALUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the drive letter and volume label
|
|
|
|
*/
|
|
|
|
static BOOL GetDriveLabel(DWORD num, char* letter, char** label)
|
|
|
|
{
|
|
|
|
HANDLE hDrive;
|
|
|
|
char DrivePath[] = "#:\\";
|
2011-11-19 01:30:20 +00:00
|
|
|
char volume_label[MAX_PATH+1];
|
2011-11-18 21:46:34 +00:00
|
|
|
|
|
|
|
*label = "NO_LABEL";
|
|
|
|
|
|
|
|
if (!GetDriveHandle(num, &hDrive, DrivePath))
|
|
|
|
return FALSE;
|
|
|
|
safe_closehandle(hDrive);
|
|
|
|
|
|
|
|
if (!GetVolumeInformationA(DrivePath, volume_label, sizeof(volume_label), NULL, NULL, NULL, NULL, 0)) {
|
2011-11-19 01:30:20 +00:00
|
|
|
uprintf("GetVolumeInformation (Label) failed: %s\n", WindowsErrorString(0));
|
2011-11-18 21:46:34 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
*label = volume_label;
|
|
|
|
*letter = DrivePath[0];
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the drive letter and volume label
|
|
|
|
*/
|
2011-11-19 01:30:20 +00:00
|
|
|
static BOOL GetDriveInfo(DWORD num, LONGLONG* DriveSize, char* FSType, DWORD FSTypeSize)
|
2011-11-18 21:46:34 +00:00
|
|
|
{
|
|
|
|
BOOL r;
|
|
|
|
HANDLE hDrive;
|
|
|
|
DWORD size;
|
|
|
|
BYTE geometry[128];
|
2011-11-19 01:30:20 +00:00
|
|
|
char DrivePath[] = "#:\\";
|
2011-11-18 21:46:34 +00:00
|
|
|
|
|
|
|
*DriveSize = 0;
|
|
|
|
|
2011-11-19 01:30:20 +00:00
|
|
|
if (!GetDriveHandle(num, &hDrive, DrivePath))
|
2011-11-18 21:46:34 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
r = DeviceIoControl(hDrive, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX,
|
|
|
|
NULL, 0, geometry, sizeof(geometry), &size, NULL );
|
|
|
|
if (!r || size <= 0) {
|
|
|
|
uprintf("IOCTL_DISK_GET_DRIVE_GEOMETRY_EX failed: %s\n", WindowsErrorString(0));
|
|
|
|
safe_closehandle(hDrive);
|
|
|
|
return FALSE;
|
2011-11-17 01:43:06 +00:00
|
|
|
}
|
2011-11-18 21:46:34 +00:00
|
|
|
*DriveSize = ((PDISK_GEOMETRY_EX)geometry)->DiskSize.QuadPart;
|
|
|
|
|
|
|
|
safe_closehandle(hDrive);
|
|
|
|
|
2011-11-19 01:30:20 +00:00
|
|
|
if (!GetVolumeInformationA(DrivePath, NULL, 0, NULL, NULL, NULL, FSType, FSTypeSize)) {
|
|
|
|
uprintf("GetVolumeInformation (Properties) failed: %s\n", WindowsErrorString(0));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-11-18 21:46:34 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL PopulateProperties(int index)
|
|
|
|
{
|
|
|
|
double HumanReadableSize;
|
|
|
|
LONGLONG DiskSize;
|
|
|
|
DWORD DeviceNumber;
|
2011-11-19 01:30:20 +00:00
|
|
|
char capacity[64], FSType[32];
|
2011-11-18 21:46:34 +00:00
|
|
|
char* suffix[] = { "KB", "MB", "GB", "TB", "PB"};
|
|
|
|
int i;
|
|
|
|
|
2011-11-18 23:41:28 +00:00
|
|
|
IGNORE_RETVAL(ComboBox_ResetContent(hCapacity));
|
2011-11-19 01:30:20 +00:00
|
|
|
IGNORE_RETVAL(ComboBox_ResetContent(hFileSystem));
|
2011-11-18 23:41:28 +00:00
|
|
|
if (index < 0) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-11-18 21:46:34 +00:00
|
|
|
DeviceNumber = (DWORD)ComboBox_GetItemData(hDeviceList, index);
|
2011-11-19 01:30:20 +00:00
|
|
|
if (!GetDriveInfo(DeviceNumber, &DiskSize, FSType, sizeof(FSType)))
|
2011-11-18 21:46:34 +00:00
|
|
|
return FALSE;
|
2011-11-17 01:43:06 +00:00
|
|
|
|
2011-11-18 21:46:34 +00:00
|
|
|
HumanReadableSize = (double)DiskSize;
|
|
|
|
for (i=0; i<ARRAYSIZE(suffix); i++) {
|
|
|
|
HumanReadableSize /= 1024.0;
|
|
|
|
if (HumanReadableSize < 512.0) {
|
|
|
|
safe_sprintf(capacity, sizeof(capacity), "%0.2f %s", HumanReadableSize, suffix[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
IGNORE_RETVAL(ComboBox_AddStringU(hCapacity, capacity));
|
|
|
|
IGNORE_RETVAL(ComboBox_SetCurSel(hCapacity, 0));
|
2011-11-19 01:30:20 +00:00
|
|
|
IGNORE_RETVAL(ComboBox_AddStringU(hFileSystem, FSType));
|
|
|
|
IGNORE_RETVAL(ComboBox_SetCurSel(hFileSystem, 0));
|
2011-11-18 21:46:34 +00:00
|
|
|
return TRUE;
|
2011-11-17 01:43:06 +00:00
|
|
|
}
|
2011-11-13 20:53:23 +00:00
|
|
|
|
|
|
|
/*
|
2011-11-17 01:43:06 +00:00
|
|
|
* Refreshes the list of USB devices
|
2011-11-13 20:53:23 +00:00
|
|
|
*/
|
2011-11-17 01:43:06 +00:00
|
|
|
static BOOL GetUSBDevices(void)
|
|
|
|
{
|
|
|
|
BOOL r;
|
|
|
|
HDEVINFO dev_info = NULL;
|
|
|
|
SP_DEVINFO_DATA dev_info_data;
|
|
|
|
SP_DEVICE_INTERFACE_DATA devint_data;
|
|
|
|
PSP_DEVICE_INTERFACE_DETAIL_DATA_A devint_detail_data;
|
2011-11-18 21:46:34 +00:00
|
|
|
STORAGE_DEVICE_NUMBER device_number;
|
2011-11-17 01:43:06 +00:00
|
|
|
DWORD size, i, j, datatype;
|
|
|
|
HANDLE hDrive;
|
|
|
|
char drive_letter;
|
2011-11-18 02:00:19 +00:00
|
|
|
char *label, entry[MAX_PATH], buffer[MAX_PATH];
|
2011-11-20 02:34:15 +00:00
|
|
|
const char* usbstor_name = "USBSTOR";
|
2011-11-17 01:43:06 +00:00
|
|
|
|
|
|
|
IGNORE_RETVAL(ComboBox_ResetContent(hDeviceList));
|
|
|
|
|
|
|
|
dev_info = SetupDiGetClassDevsA(&GUID_DEVINTERFACE_DISK, NULL, NULL, DIGCF_PRESENT|DIGCF_DEVICEINTERFACE);
|
|
|
|
if (dev_info == INVALID_HANDLE_VALUE) {
|
|
|
|
uprintf("SetupDiGetClassDevs (Interface) failed: %d\n", WindowsErrorString(0));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev_info_data.cbSize = sizeof(dev_info_data);
|
|
|
|
for (i=0; SetupDiEnumDeviceInfo(dev_info, i, &dev_info_data); i++) {
|
|
|
|
memset(buffer, 0, sizeof(buffer));
|
|
|
|
if (!SetupDiGetDeviceRegistryPropertyA(dev_info, &dev_info_data, SPDRP_ENUMERATOR_NAME,
|
|
|
|
&datatype, (LPBYTE)buffer, sizeof(buffer), &size)) {
|
|
|
|
uprintf("SetupDiGetDeviceRegistryProperty (Enumerator Name) failed: %d\n", WindowsErrorString(0));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-11-20 02:34:15 +00:00
|
|
|
if (safe_strcmp(buffer, usbstor_name) != 0)
|
2011-11-17 01:43:06 +00:00
|
|
|
continue;
|
|
|
|
memset(buffer, 0, sizeof(buffer));
|
|
|
|
if (!SetupDiGetDeviceRegistryPropertyA(dev_info, &dev_info_data, SPDRP_FRIENDLYNAME,
|
|
|
|
&datatype, (LPBYTE)buffer, sizeof(buffer), &size)) {
|
|
|
|
uprintf("SetupDiGetDeviceRegistryProperty (Friendly Name) failed: %d\n", WindowsErrorString(0));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
uprintf("found drive '%s'\n", buffer);
|
|
|
|
|
|
|
|
devint_data.cbSize = sizeof(devint_data);
|
2011-11-18 01:58:08 +00:00
|
|
|
hDrive = INVALID_HANDLE_VALUE;
|
2011-11-17 01:43:06 +00:00
|
|
|
devint_detail_data = NULL;
|
2011-11-18 01:58:08 +00:00
|
|
|
for (j=0; ;j++) {
|
|
|
|
safe_closehandle(hDrive);
|
|
|
|
safe_free(devint_detail_data);
|
|
|
|
|
2011-11-17 01:43:06 +00:00
|
|
|
if (!SetupDiEnumDeviceInterfaces(dev_info, &dev_info_data, &GUID_DEVINTERFACE_DISK, j, &devint_data)) {
|
|
|
|
if(GetLastError() != ERROR_NO_MORE_ITEMS) {
|
|
|
|
uprintf("SetupDiEnumDeviceInterfaces failed: %s\n", WindowsErrorString(0));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SetupDiGetDeviceInterfaceDetailA(dev_info, &devint_data, NULL, 0, &size, NULL)) {
|
|
|
|
if(GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
|
|
|
|
devint_detail_data = (PSP_DEVICE_INTERFACE_DETAIL_DATA_A)calloc(1, size);
|
|
|
|
if (devint_detail_data == NULL) {
|
|
|
|
uprintf("unable to allocate data for SP_DEVICE_INTERFACE_DETAIL_DATA\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
devint_detail_data->cbSize = sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA_A);
|
|
|
|
} else {
|
|
|
|
uprintf("SetupDiGetDeviceInterfaceDetail (dummy) failed: %s\n", WindowsErrorString(0));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!SetupDiGetDeviceInterfaceDetailA(dev_info, &devint_data, devint_detail_data, size, &size, NULL)) {
|
|
|
|
uprintf("SetupDiGetDeviceInterfaceDetail (actual) failed: %s\n", WindowsErrorString(0));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
hDrive = CreateFileA(devint_detail_data->DevicePath, GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
|
|
|
if(hDrive == INVALID_HANDLE_VALUE) {
|
|
|
|
uprintf("could not open '%s': %s\n", devint_detail_data->DevicePath, WindowsErrorString(0));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-11-18 21:46:34 +00:00
|
|
|
memset(&device_number, 0, sizeof(device_number));
|
2011-11-17 01:43:06 +00:00
|
|
|
r = DeviceIoControl(hDrive, IOCTL_STORAGE_GET_DEVICE_NUMBER,
|
2011-11-18 21:46:34 +00:00
|
|
|
NULL, 0, &device_number, sizeof(device_number), &size, NULL );
|
2011-11-18 01:58:08 +00:00
|
|
|
if (!r || size <= 0) {
|
2011-11-18 21:46:34 +00:00
|
|
|
uprintf("IOCTL_STORAGE_GET_DEVICE_NUMBER 2 failed: %s\n", WindowsErrorString(0));
|
2011-11-18 01:58:08 +00:00
|
|
|
continue;
|
|
|
|
}
|
2011-11-17 01:43:06 +00:00
|
|
|
|
2011-11-18 21:46:34 +00:00
|
|
|
if (GetDriveLabel(device_number.DeviceNumber, &drive_letter, &label)) {
|
|
|
|
safe_sprintf(entry, sizeof(entry), "%s (%c:)\n", label, drive_letter);
|
|
|
|
IGNORE_RETVAL(ComboBox_SetItemData(hDeviceList, ComboBox_AddStringU(hDeviceList, entry), device_number.DeviceNumber));
|
2011-11-17 01:43:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
IGNORE_RETVAL(ComboBox_SetCurSel(hDeviceList, 0));
|
2011-11-18 23:41:28 +00:00
|
|
|
PostMessage(hDialog, WM_COMMAND, (CBN_SELCHANGE<<16) | IDC_DEVICE, 0);
|
|
|
|
|
2011-11-17 01:43:06 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-11-18 01:58:08 +00:00
|
|
|
// TODO: the device is currently in use by another application (find application a la TGit installer?)
|
|
|
|
|
2011-11-17 01:43:06 +00:00
|
|
|
/*
|
|
|
|
* Main dialog callback
|
|
|
|
*/
|
2011-11-18 01:58:08 +00:00
|
|
|
static INT_PTR CALLBACK MainCallback(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
2011-11-13 20:53:23 +00:00
|
|
|
{
|
|
|
|
switch (message) {
|
|
|
|
|
|
|
|
case WM_DEVICECHANGE:
|
2011-11-17 01:43:06 +00:00
|
|
|
GetUSBDevices();
|
2011-11-13 20:53:23 +00:00
|
|
|
return (INT_PTR)TRUE;
|
|
|
|
|
|
|
|
case WM_INITDIALOG:
|
2011-11-18 23:41:28 +00:00
|
|
|
hDialog = hDlg;
|
2011-11-17 01:43:06 +00:00
|
|
|
hDeviceList = GetDlgItem(hDlg, IDC_DEVICE);
|
2011-11-18 21:46:34 +00:00
|
|
|
hCapacity = GetDlgItem(hDlg, IDC_CAPACITY);
|
2011-11-19 01:30:20 +00:00
|
|
|
hFileSystem = GetDlgItem(hDlg, IDC_FILESYSTEM);
|
2011-11-17 01:43:06 +00:00
|
|
|
GetUSBDevices();
|
2011-11-13 20:53:23 +00:00
|
|
|
return (INT_PTR)TRUE;
|
|
|
|
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch(LOWORD(wParam)) {
|
2011-11-18 23:41:28 +00:00
|
|
|
case IDC_DEVICE: // dropdown: device description
|
|
|
|
switch (HIWORD(wParam)) {
|
|
|
|
case CBN_SELCHANGE:
|
|
|
|
PopulateProperties(ComboBox_GetCurSel(hDeviceList));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2011-11-13 20:53:23 +00:00
|
|
|
case IDC_CLOSE:
|
|
|
|
PostQuitMessage(0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (INT_PTR)FALSE;
|
|
|
|
}
|
|
|
|
return (INT_PTR)TRUE;
|
|
|
|
|
|
|
|
case WM_CLOSE:
|
|
|
|
PostQuitMessage(0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
return (INT_PTR)FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Center a dialog with regards to the main application Window or the desktop
|
|
|
|
*/
|
|
|
|
void CenterDialog(HWND hDialog)
|
|
|
|
{
|
|
|
|
POINT Point;
|
|
|
|
HWND hParent;
|
|
|
|
RECT DialogRect;
|
|
|
|
RECT ParentRect;
|
|
|
|
int nWidth;
|
|
|
|
int nHeight;
|
|
|
|
|
|
|
|
// Get the size of the dialog box.
|
|
|
|
GetWindowRect(hDialog, &DialogRect);
|
|
|
|
|
|
|
|
// Get the parent
|
|
|
|
hParent = GetParent(hDialog);
|
|
|
|
if (hParent == NULL) {
|
|
|
|
hParent = GetDesktopWindow();
|
|
|
|
}
|
|
|
|
GetClientRect(hParent, &ParentRect);
|
|
|
|
|
|
|
|
// Calculate the height and width of the current dialog
|
|
|
|
nWidth = DialogRect.right - DialogRect.left;
|
|
|
|
nHeight = DialogRect.bottom - DialogRect.top;
|
|
|
|
|
|
|
|
// Find the center point and convert to screen coordinates.
|
|
|
|
Point.x = (ParentRect.right - ParentRect.left) / 2;
|
|
|
|
Point.y = (ParentRect.bottom - ParentRect.top) / 2;
|
|
|
|
ClientToScreen(hParent, &Point);
|
|
|
|
|
|
|
|
// Calculate the new x, y starting point.
|
|
|
|
Point.x -= nWidth / 2;
|
|
|
|
Point.y -= nHeight / 2 + 35;
|
|
|
|
|
|
|
|
// Move the window.
|
|
|
|
MoveWindow(hDialog, Point.x, Point.y, nWidth, nHeight, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Application Entrypoint
|
|
|
|
*/
|
|
|
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
|
|
|
|
{
|
|
|
|
HANDLE mutex = NULL;
|
|
|
|
HWND hDlg = NULL;
|
|
|
|
MSG msg;
|
|
|
|
|
2011-11-19 19:08:23 +00:00
|
|
|
uprintf("*** RUFUS INIT ***\n");
|
2011-11-17 01:43:06 +00:00
|
|
|
|
2011-11-13 20:53:23 +00:00
|
|
|
// Prevent 2 applications from running at the same time
|
2011-11-19 19:08:23 +00:00
|
|
|
mutex = CreateMutexA(NULL, TRUE, "Global/RUFUS");
|
2011-11-13 20:53:23 +00:00
|
|
|
if ((mutex == NULL) || (GetLastError() == ERROR_ALREADY_EXISTS))
|
|
|
|
{
|
2011-11-19 19:08:23 +00:00
|
|
|
MessageBoxA(NULL, "Another Rufus application is running.\n"
|
2011-11-13 20:53:23 +00:00
|
|
|
"Please close the first application before running another one.",
|
|
|
|
"Other instance detected", MB_ICONSTOP);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save instance of the application for further reference
|
2011-11-18 23:41:28 +00:00
|
|
|
hMainInstance = hInstance;
|
2011-11-13 20:53:23 +00:00
|
|
|
|
|
|
|
// Initialize COM for folder selection
|
|
|
|
CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
|
|
|
|
|
|
|
|
// Create the main Window
|
2011-11-18 01:58:08 +00:00
|
|
|
if ( (hDlg = CreateDialogA(hInstance, MAKEINTRESOURCEA(IDD_DIALOG), NULL, MainCallback)) == NULL ) {
|
2011-11-13 20:53:23 +00:00
|
|
|
MessageBoxA(NULL, "Could not create Window", "DialogBox failure", MB_ICONSTOP);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
CenterDialog(hDlg);
|
|
|
|
ShowWindow(hDlg, SW_SHOWNORMAL);
|
|
|
|
UpdateWindow(hDlg);
|
|
|
|
|
|
|
|
// Do our own event processing
|
|
|
|
while(GetMessage(&msg, NULL, 0, 0)) {
|
|
|
|
TranslateMessage(&msg);
|
|
|
|
DispatchMessage(&msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
CloseHandle(mutex);
|
2011-11-19 19:08:23 +00:00
|
|
|
uprintf("*** RUFUS EXIT ***\n");
|
2011-11-13 20:53:23 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|