tAll modules should now be dlclose'd on exit; -h option now lists all available plugin modules. - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 894ef03f9aff45fab92cf754d40347acdf9ba2ec
 (DIR) parent f9def420f9357daa57e9bbc7b3e53898410d0793
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Tue, 14 May 2002 13:01:41 +0000
       
       All modules should now be dlclose'd on exit; -h option now lists all
       available plugin modules.
       
       
       Diffstat:
         M src/sound.h                         |       2 ++
       
       1 file changed, 2 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/src/sound.h b/src/sound.h
       t@@ -29,6 +29,7 @@
        #include <glib.h>
        
        struct _SoundDriver {
       +  void *module;
          gchar *name;
          gboolean (*open) (void);
          void (*close) (void);
       t@@ -36,6 +37,7 @@ struct _SoundDriver {
        };
        typedef struct _SoundDriver SoundDriver;
        
       +const gchar *GetPluginName(GSList **listpt);
        void SoundInit(void);
        void SoundOpen(gchar *drivername);
        void SoundClose(void);