mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:31:40 +00:00
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:
parent
e89c456751
commit
7faf270a8a
2 changed files with 10 additions and 1 deletions
|
@ -66,6 +66,11 @@ RtlRaiseException(PEXCEPTION_RECORD ExceptionRecord)
|
||||||
RtlRaiseStatus(Status);
|
RtlRaiseStatus(Status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable:4717)
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
|
@ -113,6 +118,10 @@ RtlRaiseStatus(NTSTATUS Status)
|
||||||
RtlRaiseStatus(Status);
|
RtlRaiseStatus(Status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -619,7 +619,7 @@ RtlEnumerateGenericTableWithoutSplayingAvl(IN PRTL_AVL_TABLE Table,
|
||||||
IN OUT PVOID *RestartKey)
|
IN OUT PVOID *RestartKey)
|
||||||
{
|
{
|
||||||
/* FIXME! */
|
/* FIXME! */
|
||||||
return RtlEnumerateGenericTableWithoutSplayingAvl(Table, RestartKey);
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue