Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : evolume

Dir     : e_modules/evolume/src/lib


Modified Files:
        e_mixer.h 


Log Message:
Some formatting of comments.

===================================================================
RCS file: /cvs/e/e_modules/evolume/src/lib/e_mixer.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_mixer.h   5 Apr 2006 17:48:48 -0000       1.2
+++ e_mixer.h   6 Apr 2006 18:28:03 -0000       1.3
@@ -20,36 +20,38 @@
 
 struct _Mixer
 {
-        /** Name of this mixer */
+   /* Name of this mixer */
    Mixer_Name *name;
-        /** System for this mixer */
+   /* System for this mixer */
    Mixer_System *system;
 
-        /** Local data - mixer engine definded data */
+   /* Local data - mixer engine definded data */
    void *local;
 
-        /** Mixer elements */
+   /* Mixer elements */
    Evas_List *elems;
 
-        /** Signals if update necessary */
+   /* Signals if update necessary */
    int is_changed;
 
-        /** Callback and callback data */
+   /* Callback and callback data */
    mixer_callback callback;
    void *callback_private;
 
-        /** Reference counter */
+   /* Reference counter */
    int ref;
 
-        /** Pointer to function, that initializes mixer */
+   /* Pointer to function, that initializes mixer */
    Mixer *(*open) (Mixer *mixer, Mixer_System *ms, Mixer_Name *mixer_name);
-        /** Pointer to function, that frees mixer */
+   
+   /* Pointer to function, that frees mixer */
    int (*close) (Mixer *mixer, Mixer_System *ms);
-        /** Standart operations: get and set volume */
+   
+   /* Standart operations: get and set volume */
    int (*get_volume) (Mixer_Elem *melem, int *left, int *right);
    int (*set_volume) (Mixer_Elem *melem, int left, int right);
 
-        /** get and set mute */
+   /* get and set mute */
    int (*get_mute) (Mixer_Elem *melem);
    int (*set_mute) (Mixer_Elem *melem, int mute);
 
@@ -61,21 +63,22 @@
 
 struct _Mixer_Elem
 {
-        /** pointer to the parent */
+   /* pointer to the parent */
    Mixer *mixer;
 
-        /** type of mixer (reserved) */
+   /* type of mixer (reserved) */
    char type;
 
-        /** mixer name (printable) */
+   /* mixer name (printable) */
    char *name;
 
-        /** is this mixer active? */
+   /* is this mixer active? */
    char active;
-        /** local (engine specific) data */
+   
+   /* local (engine specific) data */
    void *local;
 
-        /** Element identifier (hash) */
+   /* Element identifier (hash) */
    int elem_id;
 
    /* Previous volume */
@@ -85,26 +88,28 @@
 
 struct _Mixer_Name
 {
-        /** card name (engine specific */
+   /* card name (engine specific */
    char *card;
-        /** real (printable) name */
+   
+   /* real (printable) name */
    char *real;
-        /** active flag */
+   
+   /* active flag */
    int active;
 
-        /** ID of mixer, this is typically hash */
+   /* ID of mixer, this is typically hash */
    int mixer_id;
 
-        /** name of mixer system (parent)*/
+   /* name of mixer system (parent) */
    Mixer_System_Name *system_name;
 };
 
 struct _Mixer_System
 {
-        /** name of mixer system (child)*/
+   /* name of mixer system (child) */
    Mixer_System_Name *name;
 
-        /** dl info */
+   /* dl info */
    void *handle;
    int ref;
 
@@ -115,10 +120,11 @@
 {
    /* This is system name: name of module_%s */
    char *system;
+   
    /* This is name of system (in nice printable form */
    char *name;
 
-        /** system id (hash) */
+   /** system id (hash) */
    int system_id;
 
    /* List of Mixer_Name structures */




-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to