mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 02:36:13 +00:00
implement GetEUDCTimeStampExW but still unimplement in win32k
svn path=/trunk/; revision=28700
This commit is contained in:
parent
69bf414aee
commit
e57e366637
1 changed files with 14 additions and 5 deletions
|
@ -262,15 +262,24 @@ GdiAddFontResourceW(LPCWSTR lpszFilename,FLONG fl,DESIGNVECTOR *pdv)
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
DWORD
|
DWORD
|
||||||
STDCALL
|
STDCALL
|
||||||
GetEUDCTimeStampExW(LPCWSTR str)
|
GetEUDCTimeStampExW(LPWSTR lpBaseFaceName)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
DWORD retValue = 0;
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
||||||
return 0;
|
if (!lpBaseFaceName)
|
||||||
|
{
|
||||||
|
retValue = NtGdiGetEudcTimeStampEx(NULL,0,FALSE);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
retValue = NtGdiGetEudcTimeStampEx(lpBaseFaceName, wcslen(lpBaseFaceName), FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
return retValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue