mirror of https://github.com/lianthony/NT4.0
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.
22 lines
548 B
22 lines
548 B
|
|
typedef struct IEB_Find_
|
|
{
|
|
TREE * SearchTreeToUse;
|
|
BYTE SearchTierReached;
|
|
BYTE SearchTokenDone;
|
|
BYTE SearchErrorFound;
|
|
BYTE SearchCodeFound;
|
|
BYTE SearchGroupFound;
|
|
BYTE SearchClassFound;
|
|
WORD SearchModifiersFound;
|
|
BYTE SearchTextsFound;
|
|
BYTE TokensTextResultedFrom[5];
|
|
}
|
|
IEB_Find;
|
|
|
|
#define ErrorTextMissing 100
|
|
#define ErrorTokenMissing 101
|
|
#define ErrorUnrecognizedToken 102
|
|
|
|
void ExposeTreeToBeUsed ( IEB_Find * p );
|
|
WORD FindSearchIdentifiers ( IEB_Find * p );
|