Re: [PATCH] kernel32: add AddDllDirectory stub
17 May
2017
17 May
'17
11 p.m.
On Thursday, 18 May 2017 9:00 AM, Austin English wrote:
+/************************************************************************* + * AddDllDirectory (KERNEL32.@) + */ +BOOL WINAPI AddDllDirectory(WCHAR *directory) +{ + FIXME("(%s): stub\n", wine_dbgstr_w(directory)); + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return FALSE; +}
This function actually returns DLL_DIRECTORY_COOKIE, which is a typedef'd void *. The actual definition is in libloaderapi.h, which Wine doesn't have. And, according to MSDN, directory should be const WCHAR *. -- Hugh McMaster
3220
Age (days ago)
3220
Last active (days ago)
0 comments
1 participants
participants (1)
-
Hugh McMaster