Changeset 3836:83dbb40a308c in roaraudio for libroar/basic.c


Ignore:
Timestamp:
05/16/10 22:02:39 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

spacing, added roar_noop()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/basic.c

    r3758 r3836  
    275275} 
    276276 
     277int roar_noop         (struct roar_connection * con) { 
     278 struct roar_message mes; 
     279 
     280 if ( con == NULL ) { 
     281  return -1; 
     282 } 
     283 
     284 memset(&mes, 0, sizeof(mes)); 
     285 
     286 mes.cmd = ROAR_CMD_NOOP; 
     287 
     288 return roar_req(con, &mes, NULL); 
     289} 
     290 
    277291int roar_identify   (struct roar_connection * con, char * name) { 
    278292 struct roar_message mes; 
Note: See TracChangeset for help on using the changeset viewer.