[Top] [Prev] [Next] [Bottom] [Contents]

SaSetSkipAnch

Sets a flag which will cause Sapphire to "skip" over the next anchor string in the template "play" stream.

Synopsis

#include "SaRnHtml.h"
void SaSetSkipAnch SUTPROTO(());

Arguments

None.

Return Values

None.

Description

Sets a flag which will cause Sapphire to "skip" over the next anchor string in the template "play" stream.

Example

char* str;
char* anch
pSutList list;

str = SaGetCurrentPtr();
if(str)
{
	anch = SaGetCurrentAnchString(str);
	if(anch != NULL)
	{
		/*** process anchor string ***/
		list = SaAnchStringToPieceList(anch);
		SutDestroyList(list);
		free(anch);
	}
}
SaSetSkipAnch();

See Also



[Top] [Prev] [Next] [Bottom] [Contents]

info@bluestone.com
Copyright © 1997, Bluestone. All rights reserved.