You are reading help file online using chmlib.com
|
typedef struct SPTRANSITIONENTRY
{
SPTRANSITIONID ID;
SPSTATEHANDLE hNextState;
BYTE Type; // SPTRANSITIONTYPE
char RequiredConfidence;
struct
{
DWORD fHasProperty;
};
float Weight;
union
{
struct
{
SPSTATEHANDLE hRuleInitialState; // Only if Type == SPTRANSRULE
SPRULEHANDLE hRule;
void *pvClientRuleContext;
};
struct
{
SPWORDHANDLE hWord; // Only if Type == SPTRANSWORD
void *pvClientWordContext;
};
struct
{
void *pvGrammarCookie; // Only if Type == SPTRANSTEXTBUF or SPTRANSWILDCARD
};
};
} SPTRANSITIONENTRY;
You are reading help file online using chmlib.com
|