mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
@implemented and @unimplemented comments for ntoskrnl/ldr/*.c
svn path=/trunk/; revision=5051
This commit is contained in:
parent
a7b9be5b82
commit
080762083a
2 changed files with 23 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: resource.c,v 1.4 2002/11/10 18:17:41 chorns Exp $
|
/* $Id: resource.c,v 1.5 2003/07/10 20:34:50 royce Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -16,6 +16,9 @@
|
||||||
|
|
||||||
/* FUNCTIONS ****************************************************************/
|
/* FUNCTIONS ****************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
NTSTATUS STDCALL
|
NTSTATUS STDCALL
|
||||||
LdrAccessResource(IN PVOID BaseAddress,
|
LdrAccessResource(IN PVOID BaseAddress,
|
||||||
IN PIMAGE_RESOURCE_DATA_ENTRY ResourceDataEntry,
|
IN PIMAGE_RESOURCE_DATA_ENTRY ResourceDataEntry,
|
||||||
|
@ -70,6 +73,9 @@ LdrAccessResource(IN PVOID BaseAddress,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
NTSTATUS STDCALL
|
NTSTATUS STDCALL
|
||||||
LdrFindResource_U(PVOID BaseAddress,
|
LdrFindResource_U(PVOID BaseAddress,
|
||||||
PLDR_RESOURCE_INFO ResourceInfo,
|
PLDR_RESOURCE_INFO ResourceInfo,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: rtl.c,v 1.15 2002/09/08 10:23:31 chorns Exp $
|
/* $Id: rtl.c,v 1.16 2003/07/10 20:34:50 royce Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -23,6 +23,9 @@
|
||||||
/* FUNCTIONS ****************************************************************/
|
/* FUNCTIONS ****************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
PIMAGE_NT_HEADERS STDCALL
|
PIMAGE_NT_HEADERS STDCALL
|
||||||
RtlImageNtHeader (IN PVOID BaseAddress)
|
RtlImageNtHeader (IN PVOID BaseAddress)
|
||||||
{
|
{
|
||||||
|
@ -41,6 +44,9 @@ RtlImageNtHeader (IN PVOID BaseAddress)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
PVOID STDCALL
|
PVOID STDCALL
|
||||||
RtlImageDirectoryEntryToData (IN PVOID BaseAddress,
|
RtlImageDirectoryEntryToData (IN PVOID BaseAddress,
|
||||||
IN BOOLEAN ImageLoaded,
|
IN BOOLEAN ImageLoaded,
|
||||||
|
@ -83,6 +89,9 @@ RtlImageDirectoryEntryToData (IN PVOID BaseAddress,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
PIMAGE_SECTION_HEADER
|
PIMAGE_SECTION_HEADER
|
||||||
STDCALL
|
STDCALL
|
||||||
RtlImageRvaToSection (
|
RtlImageRvaToSection (
|
||||||
|
@ -110,6 +119,9 @@ RtlImageRvaToSection (
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
ULONG
|
ULONG
|
||||||
STDCALL
|
STDCALL
|
||||||
RtlImageRvaToVa (
|
RtlImageRvaToVa (
|
||||||
|
@ -144,6 +156,9 @@ RtlImageRvaToVa (
|
||||||
|
|
||||||
#define RVA(m, b) ((ULONG)b + m)
|
#define RVA(m, b) ((ULONG)b + m)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
NTSTATUS STDCALL
|
NTSTATUS STDCALL
|
||||||
LdrGetProcedureAddress (IN PVOID BaseAddress,
|
LdrGetProcedureAddress (IN PVOID BaseAddress,
|
||||||
IN PANSI_STRING Name,
|
IN PANSI_STRING Name,
|
||||||
|
|
Loading…
Reference in a new issue