13 lines
151 B
Plaintext
13 lines
151 B
Plaintext
#include "qdb_include"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = TRUE;
|
|
|
|
if (GetResponseInt("Goto")==0)
|
|
iResult=FALSE;
|
|
return iResult;
|
|
}
|