"Mike McCormack" mike@codeweavers.com wrote:
- 172 stdcall SHCreateLinks(long long long long long)
+HRESULT WINAPI SHCreateLinks( HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObject,
UINT uFlags, LPITEMIDLIST *lppidlLinks)
Then the spec entry should be
172 stdcall SHCreateLinks(long ptr ptr long ptr)
On Thu, 21 Aug 2003, Dmitry Timoshkov wrote:
"Mike McCormack" mike@codeweavers.com wrote:
- 172 stdcall SHCreateLinks(long long long long long)
+HRESULT WINAPI SHCreateLinks( HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObject,
UINT uFlags, LPITEMIDLIST *lppidlLinks)
Then the spec entry should be
172 stdcall SHCreateLinks(long ptr ptr long ptr)
Isn't the second parameter an input string (seeing as it's a const)? If so then shouldn't it be:
172 stdcall SHCreateLinks(long str ptr long ptr)
"Francois Gouget" fgouget@free.fr wrote:
Isn't the second parameter an input string (seeing as it's a const)? If so then shouldn't it be:
172 stdcall SHCreateLinks(long str ptr long ptr)
Sure, thanks.