mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
implement GetEUDCTimeStampExW but still unimplement in win32k
svn path=/trunk/; revision=28700
This commit is contained in:
@@ -262,15 +262,24 @@ GdiAddFontResourceW(LPCWSTR lpszFilename,FLONG fl,DESIGNVECTOR *pdv)
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
DWORD
|
||||
STDCALL
|
||||
GetEUDCTimeStampExW(LPCWSTR str)
|
||||
GetEUDCTimeStampExW(LPWSTR lpBaseFaceName)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
DWORD retValue = 0;
|
||||
|
||||
if (!lpBaseFaceName)
|
||||
{
|
||||
retValue = NtGdiGetEudcTimeStampEx(NULL,0,FALSE);
|
||||
}
|
||||
else
|
||||
{
|
||||
retValue = NtGdiGetEudcTimeStampEx(lpBaseFaceName, wcslen(lpBaseFaceName), FALSE);
|
||||
}
|
||||
|
||||
return retValue;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user