Ignore:
Timestamp:
Aug 11, 2002, 7:07:59 PM (23 years ago)
Author:
umoeller
Message:

Major work on textview control and dialogs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/textv_html.h

    r113 r201  
    3737     ********************************************************************/
    3838
    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,
    7441                            PULONG pulProgress,
    7542                            PBOOL pfCancel);
    76 
    7743#endif
    7844
Note: See TracChangeset for help on using the changeset viewer.