|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T X
Length: 525 (0x20d) Types: TextFile Names: »XFeep.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« └─⟦2109abc41⟧ └─⟦this⟧ »./X.V10R4/Xlib/XFeep.c«
#include <X/mit-copyright.h> /* $Header: XFeep.c,v 10.5 86/04/22 15:28:06 jg Rel $ */ /* Copyright Massachusetts Institute of Technology 1985 */ #include "XlibInternal.h" /* * XFeep - Ring the display's bell. The sound volume is in the range -7 * to 7 and is added to the base volume as defined by XFeepControl. Large * numbers represent louder volumes. */ XFeep(volume) int volume; { register Display *dpy = _XlibCurrentDisplay; register XReq *req; GetReq(X_Feep, dpy->root); req->params0 = volume; }