Set last error value to ERROR_CALL_NOT_IMPLEMENTED in QueryActCtxW()

to make Photoshop 7.0 work again.
This commit is contained in:
Rein Klazes 2004-06-14 16:59:19 +00:00 committed by Alexandre Julliard
parent 85f81de453
commit 136a93e6be
1 changed files with 2 additions and 0 deletions

View File

@ -167,5 +167,7 @@ BOOL WINAPI QueryActCtxW(DWORD dwFlags, HANDLE hActCtx, PVOID pvSubInst,
SIZE_T *pcbLen)
{
FIXME("stub!\n");
/* this makes Adobe Photoshop 7.0 happy */
SetLastError( ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}