summaryrefslogtreecommitdiff
path: root/plugins/alt/display2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/alt/display2.cpp')
-rw-r--r--plugins/alt/display2.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/alt/display2.cpp b/plugins/alt/display2.cpp
new file mode 100644
index 0000000..257d821
--- /dev/null
+++ b/plugins/alt/display2.cpp
@@ -0,0 +1,23 @@
+#include <iostream>
+#include <string>
+
+using namespace std;
+
+#include "../TPluginParentLight.h"
+#include "../mytypes.h"
+#include "../myfuncs.h"
+
+extern "C" void init(int* csize, int* conndefault, int* chandefault, int* sessdefault)
+{
+ *csize=0; *conndefault=PFLAGS_EXEC_ONANYEVENT | PFLAGS_EXEC_ONCREATE; *chandefault=0; *sessdefault=0;
+}
+
+extern "C" void display2 (plugincontext* context, ircmessage msg, TPluginParentLight* parent, int reason)
+{
+ //if (ucase(msg.command)=="PRIVMSG")
+ if (reason&PFLAGS_EXEC_ONANYEVENT)
+ cout << msg.origin << ": " << msg.command << " " << msg.params << ": " << msg.content << endl;
+
+ if (reason&PFLAGS_EXEC_ONCREATE)
+ cout << endl << "!!!!!!!!!!!!!!connected.!!!!!!!!!!!!!!" << endl << endl;
+}