2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-02-20 15:07:38 -05:00
|
|
|
* profanity.h
|
|
|
|
*
|
2013-01-10 21:05:29 -05:00
|
|
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-02-09 17:24:03 -05:00
|
|
|
#ifndef PROFANITY_H
|
|
|
|
#define PROFANITY_H
|
|
|
|
|
2013-02-14 17:06:25 -05:00
|
|
|
#include "resource.h"
|
2013-02-02 14:47:41 -05:00
|
|
|
#include "xmpp/xmpp.h"
|
2012-11-11 07:00:21 -05:00
|
|
|
|
2013-10-14 15:22:46 -04:00
|
|
|
void prof_run(const int disable_tls, char *log_level, char *account_name);
|
2012-10-01 20:24:48 -04:00
|
|
|
|
2012-11-19 17:23:48 -05:00
|
|
|
void prof_handle_disconnect(const char * const jid);
|
2012-10-01 20:04:53 -04:00
|
|
|
void prof_handle_roster(GSList *roster);
|
2012-11-19 18:15:42 -05:00
|
|
|
void prof_handle_idle(void);
|
|
|
|
void prof_handle_activity(void);
|
2013-05-04 21:31:04 -04:00
|
|
|
void prof_handle_duck_help(const char * const result);
|
2013-06-01 19:20:22 -04:00
|
|
|
void prof_handle_roster_add(const char * const barejid, const char * const name);
|
2013-06-23 11:35:13 -04:00
|
|
|
void prof_handle_already_in_group(const char * const contact, const char * const group);
|
|
|
|
void prof_handle_not_in_group(const char * const contact, const char * const group);
|
2012-10-01 20:04:53 -04:00
|
|
|
|
2012-02-09 17:24:03 -05:00
|
|
|
#endif
|