diff options
author | George Hazan <ghazan@miranda.im> | 2022-11-15 19:19:40 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-11-15 19:19:40 +0300 |
commit | 7fc3edada208ae690149378c457aaf3adebdaad7 (patch) | |
tree | 6729052cf673bc45140b62df9e3a21bd78f53d3a /protocols/Gadu-Gadu/src/gg.h | |
parent | d765fdf96860559ed40914c23006f28d011b9fa5 (diff) |
fixes #3213 (GG: we should treat empty list as non-existent)
Diffstat (limited to 'protocols/Gadu-Gadu/src/gg.h')
-rw-r--r-- | protocols/Gadu-Gadu/src/gg.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/protocols/Gadu-Gadu/src/gg.h b/protocols/Gadu-Gadu/src/gg.h index 15c22b6a6f..76039c9765 100644 --- a/protocols/Gadu-Gadu/src/gg.h +++ b/protocols/Gadu-Gadu/src/gg.h @@ -276,6 +276,10 @@ extern IconItem iconList[]; /////////////////////////////////////////////////
// Methods
+void gg_optsdlgcheck(HWND m_hwnd);
+
+INT_PTR CALLBACK gg_userutildlgproc(HWND m_hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
+
/* Helper functions */
const wchar_t *http_error_string(int h);
unsigned long crc_get(char *mem);
@@ -303,7 +307,6 @@ void gg_links_init(); const char *ggdebug_eventtype(gg_event *e);
// Plugin headers
-#include "options.h" //include before protocol declaration
#include "gg_proto.h"
#include "resource.h"
|