Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.41 KB | None | 0 0
  1. static gboolean
  2. termination_handler(PurpleAccount *account, char **sender, char **message, PurpleConversation *conv, int *flags)
  3. {
  4.  
  5.     gboolean output;
  6.     output = purple_conv_chat_find_user(purple_conversation_get_chat_data(conv), *sender);
  7.  
  8.     purple_notify_message (
  9.         helloworld_plugin,
  10.         PURPLE_NOTIFY_MSG_INFO,
  11.         output,
  12.         "This is a plugin actions test ;)",
  13.         NULL,
  14.         NULL,
  15.         NULL);
  16.    
  17.     return FALSE;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement