ReactOS 0.4.16-dev-292-gbbdcc14
|
Go to the source code of this file.
Classes | |
struct | _DICTIONARY_HEADER |
Macros | |
#define | DICTIONARY_SIGNATURE 'tciD' |
Typedefs | |
typedef struct _DICTIONARY_HEADER | DICTIONARY_HEADER |
typedef struct _DICTIONARY_HEADER * | PDICTIONARY_HEADER |
Functions | |
VOID | InitializeDictionary (IN PDICTIONARY Dictionary) |
BOOLEAN | TestDictionarySignature (IN PDICTIONARY Dictionary) |
NTSTATUS | AllocateDictionaryEntry (IN PDICTIONARY Dictionary, IN ULONGLONG Key, _In_range_(0, sizeof(FILE_OBJECT_EXTENSION)) IN ULONG Size, IN ULONG Tag, OUT PVOID *Entry) |
PVOID | GetDictionaryEntry (IN PDICTIONARY Dictionary, IN ULONGLONG Key) |
VOID | FreeDictionaryEntry (IN PDICTIONARY Dictionary, IN PVOID Entry) |
typedef struct _DICTIONARY_HEADER * PDICTIONARY_HEADER |
NTSTATUS AllocateDictionaryEntry | ( | IN PDICTIONARY | Dictionary, |
IN ULONGLONG | Key, | ||
_In_range_(0, sizeof(FILE_OBJECT_EXTENSION)) IN ULONG | Size, | ||
IN ULONG | Tag, | ||
OUT PVOID * | Entry | ||
) |
Definition at line 78 of file dictlib.c.
VOID FreeDictionaryEntry | ( | IN PDICTIONARY | Dictionary, |
IN PVOID | Entry | ||
) |
Definition at line 189 of file dictlib.c.
Referenced by ClasspCreateClose().
PVOID GetDictionaryEntry | ( | IN PDICTIONARY | Dictionary, |
IN ULONGLONG | Key | ||
) |
Definition at line 157 of file dictlib.c.
Referenced by _IRQL_requires_max_().
VOID InitializeDictionary | ( | IN PDICTIONARY | Dictionary | ) |
Definition at line 58 of file dictlib.c.
BOOLEAN TestDictionarySignature | ( | IN PDICTIONARY | Dictionary | ) |