Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
600 B

  1. // declaration of Markup
  2. //
  3. // Markup supports HTML-like embedded links in the caption text.
  4. // (e.g. "<a>Click Here</a> to see something cool"
  5. //
  6. // An unlimited number of embedded links are supported.
  7. //
  8. // scotthan: author/owner
  9. // dsheldon: moved this to shlobjp.h. Eventually destined for comctl32.
  10. // jklann: moved to markup as pseudo-COM object
  11. #include <commctrl.h>
  12. #include <shpriv.h>
  13. #define INVALID_LINK_INDEX (-1)
  14. #define MAX_LINKID_TEXT 48
  15. STDAPI Markup_Create(IMarkupCallback *pMarkupCallback, HFONT hf, HFONT hfUnderline, REFIID refiid, void **ppv);