mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 00:20:34 +00:00

JIRA issue: CORE-17684 - Add HEAP_strdupA2W_buf and HEAP_strdupA2W_buf_free helper functions for quick string conversion. - Optimize HEAP_... functions. - Add IntConvertFontPaths helper function. - Support multiple files in AddFontResource function. - Add cFiles parameter to some internal font addition/ removal functions. - Half-implement NtGdiRemoveFontResourceW and RemoveFontResourceExW functions.
68 lines
1.9 KiB
C
68 lines
1.9 KiB
C
/*
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS GDI32
|
|
* PURPOSE:
|
|
* FILE: win32ss/gdi/gdi32/misc/heap.c
|
|
* PROGRAMER:
|
|
* REVISION HISTORY:
|
|
* NOTES:
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
#include <debug.h>
|
|
|
|
// global variables in a dll are process-global
|
|
HANDLE hProcessHeap = NULL;
|
|
|
|
NTSTATUS FASTCALL
|
|
HEAP_strdupA2W(_Outptr_ PWSTR* ppszW, _In_ PCSTR lpszA)
|
|
{
|
|
ULONG len;
|
|
NTSTATUS Status;
|
|
|
|
*ppszW = NULL;
|
|
if ( !lpszA )
|
|
return STATUS_SUCCESS;
|
|
len = lstrlenA(lpszA);
|
|
|
|
*ppszW = HEAP_alloc ( (len+1) * sizeof(WCHAR) );
|
|
if ( !*ppszW )
|
|
return STATUS_NO_MEMORY;
|
|
Status = RtlMultiByteToUnicodeN ( *ppszW, len*sizeof(WCHAR), NULL, (PCHAR)lpszA, len );
|
|
(*ppszW)[len] = UNICODE_NULL;
|
|
return Status;
|
|
}
|
|
|
|
PWSTR FASTCALL
|
|
HEAP_strdupA2W_buf(
|
|
_In_ PCSTR lpszA,
|
|
_In_ PWSTR pszStaticBuff,
|
|
_In_ SIZE_T cchStaticBuff)
|
|
{
|
|
if (!lpszA)
|
|
return NULL;
|
|
|
|
SIZE_T size = strlen(lpszA) + 1;
|
|
PWSTR pszW = (size < cchStaticBuff) ? pszStaticBuff : HEAP_alloc(size * sizeof(WCHAR));
|
|
if (!pszW)
|
|
return NULL;
|
|
|
|
RtlMultiByteToUnicodeN(pszW, size * sizeof(WCHAR), NULL, lpszA, size);
|
|
return pszW;
|
|
}
|