diff options
Diffstat (limited to 'protocols/Tox/src/common.h')
-rw-r--r-- | protocols/Tox/src/common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/Tox/src/common.h b/protocols/Tox/src/common.h index 767f127f32..fa3728896b 100644 --- a/protocols/Tox/src/common.h +++ b/protocols/Tox/src/common.h @@ -69,6 +69,12 @@ T CreateFunction(LPCSTR functionName) return reinterpret_cast<T>(GetProcAddress(g_hToxLibrary, functionName));
}
+struct ItemInfo
+{
+ HWND hwndList;
+ int SelNumber;
+};
+
extern HWND hAddNodeDlg;
int OptInit(WPARAM wParam, LPARAM lParam);
|