diff options
Diffstat (limited to 'message_notify/mywindowlist.h')
-rw-r--r-- | message_notify/mywindowlist.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/message_notify/mywindowlist.h b/message_notify/mywindowlist.h new file mode 100644 index 0000000..f5fe2f6 --- /dev/null +++ b/message_notify/mywindowlist.h @@ -0,0 +1,18 @@ +#ifndef _MYWINDOWLIST_INC
+#define _MYWINDOWLIST_INC
+
+bool InList(HANDLE hContact, HWND hWnd);
+void AddToWindowList(HANDLE hContact, HWND hWnd);
+void RemoveFromWindowList(HANDLE hContact, HWND hWnd);
+
+void PostMessageWindowList(UINT msg, WPARAM wParam, LPARAM lParam);
+void PostMessageWindowListContact(HANDLE hContact, UINT msg, WPARAM wParam, LPARAM lParam);
+
+
+int CountList(HANDLE hContact);
+bool EmptyList(HANDLE hContact);
+
+void InitWindowList();
+void DeinitWindowList();
+
+#endif
|