home *** CD-ROM | disk | FTP | other *** search
- /* File: prefs.c
- * Created: 20-10-95
- * Updated: 17-05-96
- * Version: 1.3
- * Project: Clicker
- * Owner: Jeroen Vermeulen
- * Requirements: KickStart V39+
- * Legal: PD
- * Status: Release
- */
-
- #include <exec/types.h>
-
- #include "prefs.h"
-
- /* This global volatile variable enables asynchronous communication between
- * processes. New settings for sample volume, click length and pitch will be
- * stored into this struct, so the key-click routine will feed the new data into
- * its audio request on the next key click.
- */
- volatile struct SoundSettings ClickPrefs = { FALSE, TRUE, 400, 50, 5 };
-
-