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.

22 lines
652 B

  1. // CharConv.h: interface for the CCharConversion class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHARCONV_H__067972E5_6CFE_11D2_9615_00C04FC22ADD__INCLUDED_)
  5. #define AFX_CHARCONV_H__067972E5_6CFE_11D2_9615_00C04FC22ADD__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include <windows.h>
  10. #include "apgtsstr.h"
  11. class CCharConversion
  12. {
  13. public:
  14. static CString& ConvertWCharToString(LPCWSTR wsz, CString &strRetVal);
  15. static CString& ConvertACharToString(LPCSTR sz, CString &strRetVal);
  16. };
  17. #endif // !defined(AFX_CHARCONV_H__067972E5_6CFE_11D2_9615_00C04FC22ADD__INCLUDED_)