Re: [shell32] stub for ExtractVersionResource16W

2009-05-03 Thread Reece Dunn
2009/5/3 Dmitry Timoshkov : > "Stefan Leichter" wrote: > >>> Also you might be interested that according to >>> >>> http://www.geoffchappell.com/viewer.htm?doc=studies/windows/shell/shell32/h >>> istory/names351.htm ExtractVersionResource16W is discontinued starting >>> from >>> Windows Vista. >>

Re: [shell32] stub for ExtractVersionResource16W

2009-05-03 Thread Dmitry Timoshkov
"Stefan Leichter" wrote: Also you might be interested that according to http://www.geoffchappell.com/viewer.htm?doc=studies/windows/shell/shell32/h istory/names351.htm ExtractVersionResource16W is discontinued starting from Windows Vista. What does the second point means for wine? That mean

Re: [shell32] stub for ExtractVersionResource16W

2009-05-02 Thread Stefan Leichter
Am Saturday 02 May 2009 12:54:14 schrieb Dmitry Timoshkov: > "Stefan Leichter" wrote: > > +/*** > > + * ExtractVersionResource16W (SHELL32.@) > > + */ > > +BOOL WINAPI ExtractVersionResource16W(LPWSTR s, DWORD d) { >

Re: [shell32] stub for ExtractVersionResource16W

2009-05-02 Thread Dmitry Timoshkov
"Stefan Leichter" wrote: +/*** + * ExtractVersionResource16W (SHELL32.@) + */ +BOOL WINAPI ExtractVersionResource16W(LPWSTR s, DWORD d) { +FIXME("(%s %x) stub!\n", debugstr_w(s), d); +return FALSE; +} Ple