EN6_PRC8/_module/nss/qdb_sr_stop_t.nss

18 lines
196 B
Plaintext
Raw Normal View History

#include "qdb_include"
void main()
{
int iStop;
iStop=GetResponseInt("Stop");
if (iStop==0)
iStop=1;
else
iStop=0;
SetResponseInt("Stop",iStop);
SetupResponse(GetResponseNumber());
}