diff options
Diffstat (limited to 'plugins/SRMM/src/statusicon.h')
-rw-r--r-- | plugins/SRMM/src/statusicon.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/SRMM/src/statusicon.h b/plugins/SRMM/src/statusicon.h new file mode 100644 index 0000000000..314ac9ec1e --- /dev/null +++ b/plugins/SRMM/src/statusicon.h @@ -0,0 +1,14 @@ +#ifndef _STATUS_ICON_INC
+#define _STATUS_ICON_INC
+
+extern HANDLE hHookIconPressedEvt;
+extern int status_icon_list_size;
+
+int InitStatusIcons();
+int DeinitStatusIcons();
+
+int GetStatusIconsCount(HANDLE hContact);
+void DrawStatusIcons(HANDLE hContact, HDC hdc, RECT r, int gap);
+void CheckIconClick(HANDLE hContact, HWND hwndFrom, POINT pt, RECT r, int gap, int flags);
+
+#endif
|