10 lines
137 B
Plaintext
10 lines
137 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (GetLocalInt(GetModule(),"Theme2") <2)
|
||
|
iResult=TRUE;
|
||
|
return iResult;
|
||
|
}
|