modified lib/rtl/exception.c

Silence unavoidable warning

modified   lib/rtl/generictable.c
   Avoid silenceable warning

svn path=/trunk/; revision=41561
This commit is contained in:
KJK::Hyperion 2009-06-22 20:19:06 +00:00
parent e89c456751
commit 7faf270a8a
2 changed files with 10 additions and 1 deletions

View file

@ -66,6 +66,11 @@ RtlRaiseException(PEXCEPTION_RECORD ExceptionRecord)
RtlRaiseStatus(Status);
}
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4717)
#endif
/*
* @implemented
*/
@ -113,6 +118,10 @@ RtlRaiseStatus(NTSTATUS Status)
RtlRaiseStatus(Status);
}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
/*
* @implemented
*/

View file

@ -619,7 +619,7 @@ RtlEnumerateGenericTableWithoutSplayingAvl(IN PRTL_AVL_TABLE Table,
IN OUT PVOID *RestartKey)
{
/* FIXME! */
return RtlEnumerateGenericTableWithoutSplayingAvl(Table, RestartKey);
return NULL;
}
/*