Changeset 4427:20a4dd60c62b in roaraudio


Ignore:
Timestamp:
10/07/10 22:10:38 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

wrote header

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/serverinfo.h

    r4426 r4427  
    3939#include "libroar.h" 
    4040 
     41struct roar_server_info { 
     42 char * version; 
     43 char * location; 
     44 char * description; 
     45 char * contact; 
     46 char * serial; 
     47 char * address; 
     48 char * uiurl; 
     49 struct { 
     50  char * sysname; 
     51  char * release; 
     52  char * nodename; 
     53  char * machine; 
     54 } un; 
     55}; 
     56 
     57struct roar_server_info * roar_server_info(struct roar_connection * con); 
     58int roar_server_info_free(struct roar_server_info * info); 
     59 
     60int roar_server_info_to_mes(struct roar_message * mes, struct roar_server_info * info); 
     61int roar_server_info_from_mes(struct roar_server_info * info, struct roar_message * mes); 
     62 
    4163#endif 
    4264 
Note: See TracChangeset for help on using the changeset viewer.