terminology/src/bin/termiolink.h

16 lines
551 B
C
Raw Normal View History

#ifndef TERMINOLOGY_TERMIO_LINK_H_
#define TERMINOLOGY_TERMIO_LINK_H_ 1
2014-01-06 13:29:18 -08:00
2017-07-06 11:55:02 -07:00
char *termio_link_find(const Evas_Object *obj, int cx, int cy, int *x1r, int *y1r, int *x2r, int *y2r);
Eina_Bool
termio_color_find(const Evas_Object *obj, int cx, int cy,
int *x1r, int *y1r, int *x2r, int *y2r,
uint8_t *rp, uint8_t *gp, uint8_t *bp, uint8_t *ap);
2019-09-15 08:47:07 -07:00
Eina_Bool link_is_protocol(const char *str);
Eina_Bool link_is_file(const char *str);
Eina_Bool link_is_url(const char *str);
Eina_Bool link_is_email(const char *str);
2014-01-06 13:29:18 -08:00
#endif