#include "lx.h" #include "proto.h" #include "internal.h" void lx__simple_none(LX_CONN *xc, const char *call, int opc) { unsigned char req[4]; if (xc->flags & XCF_FAIL) { lx__bad_call(xc,call); return; } req[0] = opc; req[1] = 0; w_card16(&req[2],1); lx__send_req(xc,&req[0],-1); }