From kde-commits Sun Feb 22 04:01:49 2004 From: Dirk Mueller Date: Sun, 22 Feb 2004 04:01:49 +0000 To: kde-commits Subject: kdemultimedia/kscd/libwm Message-Id: <20040222040149.F0CCD9959 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=107742251509198 CVS commit by mueller: don't export likely-to-clash symbols M +8 -8 cdda.c 1.4 --- kdemultimedia/kscd/libwm/cdda.c #1.3:1.4 @@ -34,12 +34,12 @@ #if defined(BUILD_CDDA) -struct cdda_block blk; -struct cdda_device dev; -pthread_t thread; +static struct cdda_block blk; +static struct cdda_device dev; +static pthread_t thread; void* cdda_fct(void* arg); -int playing = 0; /* Should the CD be playing now? */ -int pausing = 0; +static int playing = 0; /* Should the CD be playing now? */ +static int pausing = 0; /* @@ -47,10 +47,10 @@ int pausing = 0; * volume level. */ -unsigned int loudness = 0, volume = 32768, level; +static unsigned int loudness = 0, volume = 32768, level; /* * This is non-null if we're saving audio to a file. */ -FILE *output = NULL; +static FILE *output = NULL; /* @@ -58,5 +58,5 @@ FILE *output = NULL; * */ -struct audio_oops *oops = NULL; +static struct audio_oops *oops = NULL; /*