diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-26 16:02:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-26 16:02:07 +0300 |
commit | 5c002a15891fc4cdfaeda7247003e13db28fc5ca (patch) | |
tree | 338e8761141349996a1d3f67a570744b474f837f /plugins/Scriver/src/tabs.cpp | |
parent | 12d4034fdbd989caa495dfe665fade69eab09174 (diff) |
Scriver moved to UI classes
Diffstat (limited to 'plugins/Scriver/src/tabs.cpp')
-rw-r--r-- | plugins/Scriver/src/tabs.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/Scriver/src/tabs.cpp b/plugins/Scriver/src/tabs.cpp index 9c18edc424..c3d6c11947 100644 --- a/plugins/Scriver/src/tabs.cpp +++ b/plugins/Scriver/src/tabs.cpp @@ -719,6 +719,12 @@ static int ScriverRestoreWindowPosition(HWND hwnd, MCONTACT hContact, const char return 0;
}
+struct NewMessageWindowLParam
+{
+ MCONTACT hContact;
+ BOOL isChat;
+};
+
static INT_PTR CALLBACK DlgProcParentWindow(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
ParentWindowData *dat = (ParentWindowData*)GetWindowLongPtr(hwndDlg, GWLP_USERDATA);
|