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