afxconv.h 879 B

123456789101112131415161718192021222324252627
  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10. #ifndef __AFXCONV_H__
  11. #define __AFXCONV_H__
  12. /////////////////////////////////////////////////////////////////////////////
  13. // Global UNICODE<>ANSI translation helpers
  14. LPWSTR AFXAPI AfxA2WHelper(LPWSTR lpw, LPCSTR lpa, int nChars);
  15. LPSTR AFXAPI AfxW2AHelper(LPSTR lpa, LPCWSTR lpw, int nChars);
  16. #ifndef ATLA2WHELPER
  17. #define ATLA2WHELPER AfxA2WHelper
  18. #define ATLW2AHELPER AfxW2AHelper
  19. #endif
  20. #include <atlconv.h>
  21. #endif //__AFXCONV_H__