Undocumented functions of NTDLL

2OO1, 2 March



PEB_FREE_BLOCK
PEB_FREE_BLOCK

typedef struct _PEB_FREE_BLOCK {

PEB_FREE_BLOCK *Next; ULONG Size;

} PEB_FREE_BLOCK, *PPEB_FREE_BLOCK;



Structure PEB_FREE_BLOCK is used internally in PEB (Process Enviroment Block) structure for describe free blocks in memory allocated for PEB.



  • *Next
  •     Pointer to next free block.
  • Size
  •     Size of block, in bytes.


    Documented by:
    Reactos



    Requirements:
    Library: ntdll.lib


    See also:
    PEB