windows-nt/Source/XPSP1/NT/drivers/tpg/hwx/common/inc/quicktrie.h

23 lines
508 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
// FILE: QuickTrie.h
//
// Definitions for QuickTrie program and access code.
// Flag values.
#define QT_FLAG_VALID 0x01
#define QT_FLAG_END 0x02
// Basic node in trie.
typedef struct tagQT_NODE {
BYTE label;
BYTE flags;
WORD oDown;
} QT_NODE;
// Table name generated by QuickTrie.
extern const QT_NODE g_aQuickTrie[];
// Functions to access the QuickTrie.
extern WCHAR FirstChildQuickTrie(DWORD *hState);
extern WCHAR NextSiblingQuickTrie(DWORD *hState);
extern BOOL IsValidQuickTrie(DWORD state);