Friday 14 December 2012 Dmitry Timoshkov <dmitry(a)baikal.ru>
Stefan Leichter <Stefan.Leichter(a)camline.com> wrote:
+ pCopyFileW = (void *)GetProcAddress(hkernel32, "CopyFileW"); + pExpandEnvironmentStringsW = (void *)GetProcAddress(hkernel32, "ExpandEnvironmentStringsW"); + pGetCurrentDirectoryW = (void *)GetProcAddress(hkernel32, "GetCurrentDirectoryW");
There is no reason to import these APIs using GetProcAddress. Also testing GetFontResourceInfo without checking actual buffer contents is not very useful.
According to MSDN this APIs are WIn2k++ and WinXP++ only
Google points to http://www.undocprint.org/winspool/getfontresourceinfo which seems to have some description of this API, with symbolic names of the type parameter, so testing something besides type == 1 would be a good idea as well.
The tests show what needs to be implemented to fix bug #30514. Feel free to send tests for other query types ;-)