diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Plugins/General/gen_ff/prefs.h | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/Plugins/General/gen_ff/prefs.h')
-rw-r--r-- | Src/Plugins/General/gen_ff/prefs.h | 30 |
1 files changed, 30 insertions, 0 deletions
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 <api/config/items/cfgitemi.h> + +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 |