Author: sedwards
Date: Wed Aug 6 06:04:54 2008
New Revision: 35142
URL:
http://svn.reactos.org/svn/reactos?rev=35142&view=rev
Log:
SetLastError to ERROR_CALL_NOT_IMPLEMENTED
Wine does it, its already a stub, it can only help...
Modified:
trunk/reactos/dll/win32/kernel32/misc/stubs.c
Modified: trunk/reactos/dll/win32/kernel32/misc/stubs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/misc/st…
==============================================================================
--- trunk/reactos/dll/win32/kernel32/misc/stubs.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/kernel32/misc/stubs.c [iso-8859-1] Wed Aug 6 06:04:54 2008
@@ -963,6 +963,7 @@
)
{
STUB;
+ SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}