mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
375 B
13 lines
375 B
#ifndef _LDBUTIL_H
|
|
#define _LDBUTIL_H
|
|
|
|
#include "ldbtypes.h"
|
|
|
|
_BOOL LdbLoad(p_UCHAR fname, p_VOID _PTR ppLdb);
|
|
_BOOL LdbUnload(p_VOID _PTR ppLdb);
|
|
_BOOL InitStateMap(p_StateMap psm, _INT nLdbs);
|
|
_VOID FreeStateMap(p_StateMap psm);
|
|
_INT GetNextSyms(p_Ldb pLdb, _ULONG state, _INT nLdb, p_StateMap psm);
|
|
_VOID ClearStates(p_StateMap psm, _INT nSyms);
|
|
|
|
#endif /* _LDBUTIL_H */
|