Author: fireball Date: Sat May 20 21:30:42 2006 New Revision: 21952
URL: http://svn.reactos.ru/svn/reactos?rev=21952&view=rev Log: - Add programmers list for this file - Replace silent failures with proper STUB
Modified: trunk/reactos/dll/win32/kernel32/misc/res.c
Modified: trunk/reactos/dll/win32/kernel32/misc/res.c URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/kernel32/misc/res.... ============================================================================== --- trunk/reactos/dll/win32/kernel32/misc/res.c (original) +++ trunk/reactos/dll/win32/kernel32/misc/res.c Sat May 20 21:30:42 2006 @@ -4,7 +4,11 @@ * PROJECT : ReactOS user mode libraries * MODULE : kernel32.dll * FILE : reactos/lib/kernel32/misc/res.c - * AUTHOR : ??? + * AUTHOR : Boudewijn Dekker (Ariadne) + * Eric Kohl + * Ge van Geldorp + * Gunnar Dalsnes + * David Welch */
#include <k32.h> @@ -12,6 +16,9 @@ #define NDEBUG #include "../include/debug.h"
+#define STUB \ + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); \ + DPRINT1("%s() is UNIMPLEMENTED!\n", __FUNCTION__)
/* * @implemented @@ -227,7 +234,7 @@ BOOL bDeleteExistingResources ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }
@@ -242,7 +249,7 @@ BOOL bDeleteExistingResources ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }
@@ -257,7 +264,7 @@ BOOL fDiscard ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }
@@ -292,7 +299,7 @@ LONG lParam ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }
@@ -307,7 +314,7 @@ LONG lParam ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }
@@ -490,7 +497,7 @@ LONG lParam ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }
@@ -506,7 +513,7 @@ LONG lParam ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }
@@ -525,7 +532,7 @@ DWORD cbData ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }
@@ -544,7 +551,7 @@ DWORD cbData ) { - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + STUB; return FALSE; }