Home
last modified time | relevance | path

Searched refs:curStory (Results 1 – 5 of 5) sorted by relevance

/dports/textproc/libparsifal/libparsifal-1.1.0/samples/zenvalid/
H A Dzenvalid.c27 ZENSTORY *curStory; member
36 STORYP->curStory = XMLVector_Append(STORYP->stories, NULL); in StartElement()
37 ASSERT_MEM_ABORT(STORYP->curStory); in StartElement()
38 STORYP->curStory->title = (char*)NULL; in StartElement()
39 STORYP->curStory->author = (char*)NULL; in StartElement()
40 STORYP->curStory->body = (char*)NULL; in StartElement()
44 STORYP->curStr = &STORYP->curStory->title; in StartElement()
46 STORYP->curStr = &STORYP->curStory->author; in StartElement()
48 STORYP->curStr = &STORYP->curStory->body; in StartElement()
/dports/games/holotz-castle/holotz-castle-1.3.14-src/src/
H A DHCPlaylist.cpp106 if (curStory + 1 >= (s32)stories.size()) in NextStory()
111 ++curStory; in NextStory()
113 if (!HCUtil::FindFile(JString("stories/") + stories[curStory])) in NextStory()
115 --curStory; in NextStory()
133 curStory = i; in GoTo()
140 if (!HCUtil::FindFile(JString("stories/") + stories[curStory])) in GoTo()
H A DHCPlaylist.h51 s32 curStory; /**< Current story playing. */ variable
57 HCPlaylist() : curStory(0) in HCPlaylist()
66 const char * StoryName() {return stories[curStory];} in StoryName()
81 void Reset() {curStory = 0;} in Reset()
/dports/textproc/libparsifal/libparsifal-1.1.0/samples/zenstory/
H A Dzenstory.c27 parser->curStory = XMLVector_Append(parser->stories, NULL); in StartElement()
28 ASSERT_MEM_ABORT(parser->curStory); in StartElement()
29 parser->curStory->title = (char*)NULL; in StartElement()
30 parser->curStory->author = (char*)NULL; in StartElement()
31 parser->curStory->body = (char*)NULL; in StartElement()
78 parser->curStory->title = s; in EndElement()
83 parser->curStory->author = s; in EndElement()
88 parser->curStory->body = s; in EndElement()
H A Dzenstory.h33 ZENSTORY *curStory; member