ReactOS 0.4.16-dev-1078-g21d3e29
|
#include <list.h>
Public Member Functions | |
CListNode () | |
CListNode (VOID *element, CListNode *next, CListNode *prev) | |
~CListNode () | |
void * | operator new (size_t s) |
VOID | operator delete (void *p) |
VOID | SetElement (PVOID element) |
VOID | SetNext (CListNode *next) |
VOID | SetPrev (CListNode *prev) |
PVOID | GetElement () |
CListNode * | GetNext () |
CListNode * | GetPrev () |
Private Attributes | |
PVOID | Element |
CListNode * | Next |
CListNode * | Prev |
Static Private Attributes | |
static HANDLE | hHeap = NULL |
static INT | nRef = 0 |
Definition at line 37 of file list.cpp.
|
private |
Definition at line 27 of file list.h.
Referenced by CListNode(), GetElement(), and SetElement().
|
private |
Definition at line 28 of file list.h.
Referenced by CListNode(), GetNext(), and SetNext().
|
private |
Definition at line 29 of file list.h.
Referenced by CListNode(), GetPrev(), and SetPrev().