diff options
Diffstat (limited to 'irc_mod/popups.h')
-rw-r--r-- | irc_mod/popups.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/irc_mod/popups.h b/irc_mod/popups.h new file mode 100644 index 0000000..148e8ba --- /dev/null +++ b/irc_mod/popups.h @@ -0,0 +1,11 @@ +#ifndef __IRC_POPUPS_H
+#define __IRC_POPUPS_H
+
+#define POPTYPE_SPAM 254 // this is for spambots
+
+void InitPopUps();
+void InitPopupOpts(WPARAM wParam);
+
+int ShowPopUpMsg(HANDLE hContact, const char* szTitle, const char* szMsg, BYTE bType);
+
+#endif /* __IRC_POPUPS_H */
|