diff options
Diffstat (limited to 'Src/Plugins/General/gen_crasher/configDlg.h')
-rw-r--r-- | Src/Plugins/General/gen_crasher/configDlg.h | 15 |
1 files changed, 15 insertions, 0 deletions
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 <windows.h> + +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 |