blob: 1f5ddabbb640cd3584a9a9990f48171a999e55a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef LYMAP_H
#define LYMAP_H
#ifndef HTUTILS_H
#include <HTUtils.h>
#endif
#include <HTList.h>
#include <HTAnchor.h>
extern BOOL LYMapsOnly;
extern void ImageMapList_free(HTList *list);
extern BOOL LYAddImageMap(char *address, char *title,
HTParentAnchor *node_anchor);
extern BOOL LYAddMapElement(char *map, char *address, char *title,
HTParentAnchor *node_anchor,
BOOL intern_flag);
extern BOOL LYHaveImageMap(char *address);
#endif /* LYMAP_H */
|