mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 02:56:09 +00:00
[SDK][ATL] Use CStringW in CImage
This commit is contained in:
parent
ad319ef944
commit
03854056a2
1 changed files with 2 additions and 16 deletions
|
@ -377,14 +377,7 @@ public:
|
|||
HRESULT Load(LPCTSTR pszFileName) throw()
|
||||
{
|
||||
// convert the file name string into Unicode
|
||||
// TODO: use a string class
|
||||
#ifdef UNICODE
|
||||
LPCWSTR pszNameW = pszFileName;
|
||||
#else
|
||||
WCHAR szPath[MAX_PATH];
|
||||
::MultiByteToWideChar(CP_ACP, 0, pszFileName, -1, szPath, MAX_PATH);
|
||||
LPCWSTR pszNameW = szPath;
|
||||
#endif
|
||||
CStringW pszNameW(pszFileName);
|
||||
|
||||
// create a GpBitmap object from file
|
||||
using namespace Gdiplus;
|
||||
|
@ -555,14 +548,7 @@ public:
|
|||
// TODO & FIXME: set parameters (m_rgbTransColor etc.)
|
||||
|
||||
// convert the file name string into Unicode
|
||||
// TODO: use a string class
|
||||
#ifdef UNICODE
|
||||
LPCWSTR pszNameW = pszFileName;
|
||||
#else
|
||||
WCHAR szPath[MAX_PATH];
|
||||
::MultiByteToWideChar(CP_ACP, 0, pszFileName, -1, szPath, MAX_PATH);
|
||||
LPCWSTR pszNameW = szPath;
|
||||
#endif
|
||||
CStringW pszNameW(pszFileName);
|
||||
|
||||
// if the file type is null, get the file type from extension
|
||||
const GUID *FileType = &guidFileType;
|
||||
|
|
Loading…
Reference in a new issue