Source code of Windows XP (NT5)
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
671 B

  1. /*
  2. * persist.hpp - IPersist, IPersistFile, and IPersistStream implementation
  3. * description.
  4. */
  5. /* Global Constants
  6. *******************/
  7. // persist.cpp
  8. extern const UINT g_ucMaxURLLen;
  9. extern const char g_cszURLLeftDelimiter[];
  10. extern const char g_cszURLRightDelimiter[];
  11. extern const char g_cszURLPrefix[];
  12. extern const UINT g_ucbURLPrefixLen;
  13. extern const char g_cszURLExt[];
  14. extern const char g_cszURLDefaultFileNamePrompt[];
  15. extern const char g_cszCRLF[];
  16. /* Prototypes
  17. *************/
  18. // persist.cpp
  19. extern HRESULT UnicodeToANSI(LPCOLESTR pcwszUnicode, PSTR *ppszANSI);
  20. extern HRESULT ANSIToUnicode(PCSTR pcszANSI, LPOLESTR *ppwszUnicode);