[BACK]Return to opt.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / aucat

Diff for /src/usr.bin/aucat/Attic/opt.h between version 1.2 and 1.3

version 1.2, 2009/11/03 21:31:37 version 1.3, 2010/04/03 17:40:33
Line 28 
Line 28 
         struct aparams wpar;    /* template for clients write params */          struct aparams wpar;    /* template for clients write params */
         struct aparams rpar;    /* template for clients read params */          struct aparams rpar;    /* template for clients read params */
         int mmc;                /* true if MMC control enabled */          int mmc;                /* true if MMC control enabled */
   #define MODE_PLAY       0x1     /* allowed to play */
   #define MODE_REC        0x2     /* allowed to rec */
   #define MODE_MIDIIN     0x4     /* allowed to read midi */
   #define MODE_MIDIOUT    0x8     /* allowed to write midi */
   #define MODE_MON        0x10    /* allowed to monitor */
   #define MODE_RECMASK    (MODE_REC | MODE_MON)
           unsigned mode;          /* bitmap of above */
 };  };
   
 SLIST_HEAD(optlist,opt);  SLIST_HEAD(optlist,opt);
   
 void opt_new(char *, struct aparams *, struct aparams *, int, int);  void opt_new(char *, struct aparams *, struct aparams *, int, int, unsigned);
 struct opt *opt_byname(char *);  struct opt *opt_byname(char *);
   
 #endif /* !defined(OPT_H) */  #endif /* !defined(OPT_H) */

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3