Re: [try2] kernel32: Add partial stub for NeedCurrentDirectoryForExePath
April 18, 2007
12:11 p.m.
+/*********************************************************************** + * NeedCurrentDirectoryForExePathA (KERNEL32.@) + */ +BOOL WINAPI NeedCurrentDirectoryForExePathA( LPCSTR name ) +{ + WCHAR *nameW; + + if (!(nameW = FILE_name_AtoW( name, FALSE ))) return TRUE; If FILE_name_AtoW fails, the function fails, so the return value should be FALSE, shouldn't it ? Laurent On Wed, 18 Apr 2007 15:54:42 +0400, "Kirill K. Smirnov" <lich(a)math.spbu.ru> wrote:
Please, ignore my previous attempt.
6918
Age (days ago)
6918
Last active (days ago)
0 comments
1 participants
participants (1)
-
Laurent Vromman