From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Plugins/General/gen_crasher/configDlg.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Src/Plugins/General/gen_crasher/configDlg.h (limited to 'Src/Plugins/General/gen_crasher/configDlg.h') diff --git a/Src/Plugins/General/gen_crasher/configDlg.h b/Src/Plugins/General/gen_crasher/configDlg.h new file mode 100644 index 00000000..5c3ef4df --- /dev/null +++ b/Src/Plugins/General/gen_crasher/configDlg.h @@ -0,0 +1,15 @@ +#pragma once +#include + +int SelectComboBoxItem(const HWND hwCombo, int data); +BOOL OpenFolderDialog(HWND parent, LPWSTR pathBuffer); +BOOL CALLBACK ConfigDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); + +void UpdateSendType(HWND hwndDlg, BOOL enabled); +void UpdateSend(HWND hwndDlg, BOOL enabled); +void UpdateCreateDmp(HWND hwndDlg, BOOL enabled); +void UpdateCreateLog(HWND hwndDlg, BOOL enabled); +void UpdateZip(HWND hwndDlg, BOOL enabled); + +void CreatePathFromFullName(wchar_t **path, const wchar_t *fullname); +const wchar_t* GetFileName(const wchar_t *fullname); \ No newline at end of file -- cgit