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