Changeset 201 for trunk/include/helpers/textv_html.h
- Timestamp:
- Aug 11, 2002, 7:07:59 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/textv_html.h
r113 r201 37 37 ********************************************************************/ 38 38 39 /* 40 *@@ XHTMLLINK: 41 * describes a link. 42 * 43 *@@added V0.9.3 (2000-05-19) [umoeller] 44 */ 45 46 typedef struct _XHTMLLINK 47 { 48 USHORT usLinkIndex; // >= 1; this is stored in the XTextView control 49 PSZ pszTargetFile; // target file (HREF="...") without anchors; 50 // this is NULL if the target is an anchor only 51 // (HREF="#anchor") 52 PSZ pszTargetAnchor; // anchor in target file; this is NULL if the 53 // target has no anchor 54 } XHTMLLINK, *PXHTMLLINK; 55 56 #ifdef LINKLIST_HEADER_INCLUDED 57 /* 58 *@@ XHTMLDATA: 59 * for storing output from txvConvertFromHTML. 60 * 61 *@@added V0.9.3 (2000-05-19) [umoeller] 62 */ 63 64 typedef struct _XHTMLDATA 65 { 66 PSZ pszTitle; // contents of TITLE tag (must be freed) 67 LINKLIST llLinks; // list of XHTMLLINK structures; empty if none 68 // (auto-free mode; use lstClear) 69 } XHTMLDATA, *PXHTMLDATA; 70 #endif 71 72 BOOL txvConvertFromHTML(char **ppszText, 73 PVOID pxhtml, 39 BOOL txvConvertFromHTML(PSZ *ppszText, 40 PSZ *ppszTitle, 74 41 PULONG pulProgress, 75 42 PBOOL pfCancel); 76 77 43 #endif 78 44
Note:
See TracChangeset
for help on using the changeset viewer.