1: #include <X/mit-copyright.h> 2: 3: /* $Header: XFeepControl.c,v 10.4 86/02/01 15:33:24 tony Rel $ */ 4: /* Copyright Massachusetts Institute of Technology 1985 */ 5: 6: #include "XlibInternal.h" 7: 8: /* 9: * XFeepControl - Define the base volume for XFeep requests. The volume 10: * is in the range 0 to 7 with 7 being the loudest. 11: */ 12: 13: XFeepControl(volume) 14: int volume; 15: { 16: register Display *dpy = _XlibCurrentDisplay; 17: register XReq *req; 18: 19: GetReq(X_FeepControl, dpy->root); 20: req->func = volume; 21: }