if i have the following lines:
const CToken::stTokenList CToken::m_TokenLists[] = {
{WIN_LANGID::ENGLISH, " ,.<>/?:;\"'[]{}+=_-)
(*&^%$#@!`~\t\n\r|\\", "/-_&.\\:"},
{WIN_LANGID::ARABIC, " ,.<>/?:;\"'[]{}+=_-)
(*&^%$#@!`~\t\n\r|\\\xA1\xBA\xBF", "/-_&.\\:"},
{0, NULL} };
then it doesn't see some declarations later in the
same file. for example, the "DoThis" item below
doesn't show up in the documentation file
/** Get data from a stream
@param pHoldingPtr defaults to NULL,
string is returned to the caller from here
@return Next token, NULL if no more tokens
are available
@keywords tokenize, comma-delimited
*/
int DoThis(char *pHoldingPtr);
int DoThis(char *pHoldingPtr)
{
return 7+pHoldingPtr[3];
}