summary refs log tree commit diff stats
path: root/plugins/perl/perl.c
AgeCommit message (Expand)Author
2012-11-12Update Perl error message according to recent changesBerke Viktor
2012-11-11RebrandingBerke Viktor
2012-11-04Use configdir instead of *xchatdir*Berke Viktor
2012-10-30Some final rebrandingBerke Viktor
2012-10-30Rebrand get_info(xchatdir) but remain compatible for Perl and PythonBerke Viktor
2012-10-30Some remaining fixesBerke Viktor
2012-10-30Rebranding for the rest of plugin*Berke Viktor
2012-10-30Rebranding for XCHAT_EAT_*Berke Viktor
2012-10-30Rebranding for XCHAT_FD_*Berke Viktor
2012-10-30Rebranding for XCHAT_PRI_*Berke Viktor
2012-10-27Ignore generated config.h properly on UnixBerke Viktor
2012-10-24A lot more rebrandingBerke Viktor
2012-07-26Auto-load user plugins and scripts from <config>/addonsBerke Viktor
2012-07-21Use <configdir>/scripts to (auto)load Lua/Perl/Python/Tcl scriptsBerke Viktor
2012-07-20Some more rebrandingBerke Viktor
2012-07-19more branding changesxhmikosr
2012-07-13Dirent is no longer required for PerlBerke Viktor
2012-07-13Update XChat to r1514Berke Viktor
2012-07-13Update XChat to r1511Berke Viktor
2012-06-10More solution fixes and add language interfacesBerke Viktor
2011-12-11some more multiplatform supportBerke Viktor
2011-12-11initial patches for linux compatibilityBerke Viktor
2011-11-23Merge branch 'master' into wdkBerke Viktor
2011-11-23update xchat to r1498Berke Viktor
2011-07-28instruct users to download strawberry perl instead of activeperlberkeviktor@aol.com
2011-02-28add wdk changes to named branchberkeviktor@aol.com
2011-02-24add xchat r1489berkeviktor@aol.com
icense as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #include "textenums.h" #ifndef HEXCHAT_TEXT_H #define HEXCHAT_TEXT_H #define EMIT_SIGNAL(i, sess, a, b, c, d, e) text_emit(i, sess, a, b, c, d) struct text_event { char *name; char * const *help; int num_args; char *def; }; void scrollback_close (session *sess); void scrollback_load (session *sess); int text_word_check (char *word, int len); void PrintText (session *sess, char *text); void PrintTextf (session *sess, char *format, ...); void log_close (session *sess); void log_open_or_close (session *sess); void load_text_events (void); void pevent_save (char *fn); int pevt_build_string (const char *input, char **output, int *max_arg); int pevent_load (char *filename); void pevent_make_pntevts (void); int text_color_of (char *name); void text_emit (int index, session *sess, char *a, char *b, char *c, char *d); int text_emit_by_name (char *name, session *sess, char *a, char *b, char *c, char *d); char *text_validate (char **text, int *len); int get_stamp_str (char *fmt, time_t tim, char **ret); void format_event (session *sess, int index, char **args, char *o, int sizeofo, unsigned int stripcolor_args); char *text_find_format_string (char *name); void sound_play (const char *file, gboolean quiet); void sound_play_event (int i); void sound_beep (session *); void sound_load (); void sound_save (); #endif