Changeset 810:70f99861c1fa in roaraudio


Ignore:
Timestamp:
09/17/08 19:19:07 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added soem basic structure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/cdrom.h

    r808 r810  
    3838#include "libroar.h" 
    3939 
     40struct roar_cdrom { 
     41 int local; 
     42 int fh; 
     43 int stream; 
     44 char * device; 
     45 struct roar_connection * con; 
     46}; 
     47 
     48int roar_cdrom_open (struct roar_connection * con, struct roar_cdrom * cdrom, char * device); 
     49int roar_cdrom_close(struct roar_cdrom * cdrom); 
     50int roar_cdrom_stop (struct roar_cdrom * cdrom); 
     51int roar_cdrom_play (struct roar_cdrom * cdrom, int track); 
     52 
    4053#endif 
    4154 
Note: See TracChangeset for help on using the changeset viewer.