implement GetEUDCTimeStampExW but still unimplement in win32k

svn path=/trunk/; revision=28700
This commit is contained in:
Magnus Olsen 2007-08-31 12:16:45 +00:00
parent 69bf414aee
commit e57e366637

View file

@ -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;
}
/*