diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-14 20:44:17 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-14 20:44:17 +0000 |
commit | 3aa5dd18a8bda96ab65def0fe9ca78bfd0af3960 (patch) | |
tree | 689268fbdf96796fd89efd7fc40b6ebc9f52ea41 /protocols/Tox/src/common.h | |
parent | f3d00751ad8ebc1827a05813c5e4f4f071e0ba93 (diff) |
second draft of add node dialog
git-svn-id: http://svn.miranda-ng.org/main/trunk@12109 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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);
|