Re: shell32: implement SHGetFolderPathAndSubDirA/W [try2][resend]
Stefan Leichter <Stefan.Leichter(a)camline.com> writes:
@@ -1758,7 +1836,7 @@ */ if (!(nFolder & CSIDL_FLAG_CREATE)) { - hr = HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND); + hr = HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND); goto end;
Why is it using a different error code here? Do you have a test case for this? -- Alexandre Julliard julliard(a)winehq.org
Alexandre Julliard schrieb:
Stefan Leichter <Stefan.Leichter(a)camline.com> writes:
@@ -1758,7 +1836,7 @@ */ if (!(nFolder & CSIDL_FLAG_CREATE)) { - hr = HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND); + hr = HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND); goto end;
Why is it using a different error code here? Do you have a test case for this?
Of course dlls/shell32/tests/shlfolder.c around line 1457
participants (2)
-
Alexandre Julliard -
Stefan Leichter