1 /* $LynxId: LYMap.h,v 1.12 2010/09/25 11:35:42 tom Exp $ */
2 #ifndef LYMAP_H
3 #define LYMAP_H
4 
5 #ifndef HTUTILS_H
6 #include <HTUtils.h>
7 #endif
8 
9 #include <HTList.h>
10 #include <HTAnchor.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15     extern BOOL LYMapsOnly;
16 
17     extern void ImageMapList_free(HTList *list);
18     extern void LYPrintImgMaps(FILE *fp);
19     extern BOOL LYAddImageMap(char *address, char *title,
20 			      HTParentAnchor *node_anchor);
21     extern BOOL LYAddMapElement(char *map, char *address, char *title,
22 				HTParentAnchor *node_anchor,
23 				int intern_flag);
24     extern BOOL LYHaveImageMap(char *address);
25 
26 #ifdef __cplusplus
27 }
28 #endif
29 #endif				/* LYMAP_H */
30