#include "lx.h" #include "proto.h" #include "internal.h" void lx_Bell(LX_CONN *xc, signed char pct) { unsigned char req[4]; if (xc->flags & XCF_FAIL) return; req[0] = XP_REQ_Bell; req[1] = pct; w_card16(&req[2],1); lx__send_req(xc,&req[0],4); }