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_ff/prefs.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Src/Plugins/General/gen_ff/prefs.h (limited to 'Src/Plugins/General/gen_ff/prefs.h') diff --git a/Src/Plugins/General/gen_ff/prefs.h b/Src/Plugins/General/gen_ff/prefs.h new file mode 100644 index 00000000..e90aaa33 --- /dev/null +++ b/Src/Plugins/General/gen_ff/prefs.h @@ -0,0 +1,30 @@ +#ifndef _FF_PREFS_H +#define _FF_PREFS_H + +#include + +extern INT_PTR CALLBACK ffPrefsProc(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam); +extern INT_PTR CALLBACK ffPrefsProc1(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam); +extern INT_PTR CALLBACK ffPrefsProc2(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam); +extern INT_PTR CALLBACK ffPrefsProc3(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam); +extern INT_PTR CALLBACK ffPrefsProc4(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam); +extern INT_PTR CALLBACK ffPrefsProc5(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam); + +void _dosetsel(HWND hwndDlg); +HWND +ActiveChildWindowFromPoint(HWND hwnd, POINTS cursor_s, const int *controls, size_t controlsCount); + +#define WA2FFOPTIONS_PARENT CfgItemI + +// {68A2EFD7-0FBB-4ef9-9D3A-590F943C2A73} +static const GUID Wa2FFOptionsGuid = +{ 0x68a2efd7, 0xfbb, 0x4ef9, { 0x9d, 0x3a, 0x59, 0xf, 0x94, 0x3c, 0x2a, 0x73 } }; + +class Wa2FFOptions : public WA2FFOPTIONS_PARENT { +public: + Wa2FFOptions (); +}; + +extern Wa2FFOptions *ffoptions; + +#endif \ No newline at end of file -- cgit