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