/win32/shellext/StringUtils.h

https://bitbucket.org/tortoisehg/hgtk/ · C Header · 34 lines · 8 code · 10 blank · 16 comment · 0 complexity · 35a7946e6212da7107bd7a0f14075392 MD5 · raw file

  1. // Copyright (C) 2002 - Francis Irving
  2. // <francis@flourish.org> - May 2002
  3. // This program is free software; you can redistribute it and/or
  4. // modify it under the terms of the GNU General Public License
  5. // as published by the Free Software Foundation; either version 2
  6. // of the License, or (at your option) any later version.
  7. // This program is distributed in the hope that it will be useful,
  8. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. // GNU General Public License for more details.
  11. // You should have received a copy of the GNU General Public License
  12. // along with this program; if not, write to the Free Software
  13. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  14. #ifndef _STRING_UTILS_H
  15. #define _STRING_UTILS_H
  16. #include <string>
  17. #include <windows.h>
  18. // Quotes a string
  19. std::string Quote(const std::string& str);
  20. // Convert Unicode string to multibyte string
  21. std::string WideToMultibyte(const std::wstring& wide, UINT CodePage = CP_ACP);
  22. // Convert multibyte string to Unicode string
  23. std::wstring MultibyteToWide(const std::string& multibyte, UINT CodePage = CP_ACP);
  24. #endif