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.

29 lines
972 B

  1. /*
  2. * h t t p u t i l. h
  3. *
  4. * Author: Greg Friedman
  5. *
  6. * Purpose: Utility functions used to implement http mail.
  7. *
  8. * Copyright (C) Microsoft Corp. 1998.
  9. */
  10. #ifndef _HTTPUTIL_H
  11. #define _HTTPUTIL_H
  12. void Http_FreeTargetList(LPHTTPTARGETLIST pTargets);
  13. HRESULT Http_NameFromUrl(LPCSTR pszUrl, LPSTR pszBuffer, DWORD *pdwBufferLen);
  14. HRESULT Http_AddMessageToFolder(IMessageFolder *pFolder,
  15. LPSTR pszAcctId,
  16. LPHTTPMEMBERINFO pmi,
  17. MESSAGEFLAGS dwFlags,
  18. LPSTR pszUrl,
  19. LPMESSAGEID pidMessage);
  20. HRESULT Http_SetMessageStream(IMessageFolder *pFolder,
  21. MESSAGEID idMessage,
  22. IStream *pStream,
  23. LPFILEADDRESS pfa,
  24. BOOL fSetDisplayProps);
  25. #endif // _HTTPUTIL_H