hexchat/src/common/url.h

21 lines
496 B
C
Raw Normal View History

2011-02-23 22:14:30 -05:00
#ifndef XCHAT_URL_H
#define XCHAT_URL_H
extern void *url_tree;
#define WORD_URL 1
#define WORD_NICK 2
#define WORD_CHANNEL 3
#define WORD_HOST 4
#define WORD_EMAIL 5
2012-10-06 21:00:52 -04:00
/* anything >0 will be displayed as a link by gtk_xtext_motion_notify() */
2011-02-23 22:14:30 -05:00
#define WORD_DIALOG -1
2012-10-06 21:00:52 -04:00
#define WORD_PATH -2
2011-02-23 22:14:30 -05:00
void url_clear (void);
void url_save_tree (const char *fname, const char *mode, gboolean fullpath);
2011-02-23 22:14:30 -05:00
int url_check_word (char *word, int len);
void url_check_line (char *buf, int len);
#endif