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.
|
|
/*
* b o d y u t i l . h * * Purpose: * Utility functions for body * * History * September '96: brettm - created * * Copyright (C) Microsoft Corp. 1995, 1996. */
#ifndef _BODYUTIL_H
#define _BODYUTIL_H
interface IHTMLDocument2; interface IHTMLElement; interface IOleCommandTarget;
HRESULT HrCmdTgtUpdateToolbar(IOleCommandTarget *pCmdTarget, HWND hwndToolbar); HRESULT HrConvertHTMLToPlainText(LPSTREAM pstmHtml, LPSTREAM *ppstm, CLIPFORMAT cf); HRESULT HrCheckForFramesets(LPMIMEMESSAGE pMsg, BOOL fWarnUser); HRESULT HrStripHTMLClipboardHeader(LPSTREAM pstm, BOOL *pfIsRealCFHTML); HRESULT HrGetSetCheck(BOOL fSet, IHTMLElement *pElem, VARIANT_BOOL *pfValue);
struct URLSUB { LPCTSTR pszId; UINT ids; };
HRESULT SubstituteURLs(IHTMLDocument2 *pDoc, const URLSUB *rgUrlSub, int cUrlSub);
#endif //_BODYUTIL_H
|