DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T X

⟦6eec26ac4⟧ TextFile

    Length: 525 (0x20d)
    Types: TextFile
    Names: »XFeep.c«

Derivation

└─⟦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« 

TextFile

#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;
}