Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace simpleIRC.PluginInterface
  7. {
  8. public interface PluginInterface
  9. {
  10. void OnPluginLoad(object MainWindow, object CoreObject);
  11. void OnMessageSent(string Channel, int ServerIndex, string User, string Message);
  12. void OnJoinSent(string Channel, int ServerIndex, string User);
  13. void OnPartSent(string Channel, int ServerIndex, string User, string Reason = "");
  14. void OnQuitSent(string Channel, int ServerIndex, string NickName, string User, string Host, string Reason = "");
  15. void OnEmptyTopic(string Channel, int ServerIndex);
  16. void OnFoundTopic(string Channel, int ServerIndex, string Topic);
  17. void OnTopicSetBy(string Channel, int ServerIndex, string Name, int TimeSet);
  18. void OnNamesReceived(string Channel, int ServerIndex, string[] Names);
  19. void OnTopicChange(string Channel, int ServerIndex, string User, string NewTopic);
  20. void OnNickChange(string Channel, int ServerIndex, string User, string NewNick);
  21. void OnChannelNotice(string Sender, string Channel, int ServerIndex, string Message);
  22. void OnPrivateNotice(string Sender, int ServerIndex, string Message);
  23. void OnPrivateMessage(string Sender, int ServerIndex, string Message);
  24. void OnPrivateActionSent(string Sender, int ServerIndex, string Action);
  25. void OnModeChange(string Channel, int ServerIndex, string User, string Mode);
  26. void OnActionSent(string Channel, int ServerIndex, string User, string Action);
  27. void OnKickSent(string Channel, int ServerIndex, string Kicker, string Kickee, string Reason);
  28. void OnInvalidPassword(string Channel, int ServerIndex, string Message);
  29. void OnChannelForward(string Channel, string Forward, int ServerIndex, string Message);
  30. void OnCannotJoin(string Channel, int ServerIndex, string Message);
  31. void OnMotdReceive(int ServerIndex, string MotdMessage);
  32. void OnMotdStart(int ServerIndex, string Message);
  33. void OnMotdEnd(int ServerIndex, string Message);
  34. void OnServerInformationReceived(int ServerIndex, string Message);
  35. void OnCommandsSupportedReceived(int ServerIndex, string CommandsSupported);
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement