terminology/src/bin/termiolink.h

24 lines
453 B
C
Raw Normal View History

2014-01-06 13:29:18 -08:00
#ifndef _TERMIO_LINK_H__
#define _TERMIO_LINK_H__ 1
2018-09-26 10:59:33 -07:00
#define HL_LINKS_MAX (1 << 16)
typedef struct _Termlink Term_Link;
struct _Termlink
{
char *key;
char *url;
unsigned int refcount;
};
2018-10-12 09:12:15 -07:00
typedef struct _Termpty Termpty;
2018-09-26 10:59:33 -07: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);
2014-01-06 13:29:18 -08:00
2018-10-12 09:12:15 -07:00
Term_Link * term_link_new(Termpty *ty);
void term_link_free(Termpty *ty, Term_Link *link);
2014-01-06 13:29:18 -08:00
#endif