Changeset 4304:527f0ac30a14 in roaraudio for libroar/notify.c


Ignore:
Timestamp:
09/07/10 02:34:10 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

some structs for possible implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/notify.c

    r4302 r4304  
    3636#include "libroar.h" 
    3737 
     38struct roar_subscriber { 
     39 uint32_t flags; 
     40 uint32_t event; 
     41 int emitter; 
     42 int target; 
     43 int target_type; 
     44 void (*cb)(struct roar_event * event, void * userdata); 
     45 void * userdata; 
     46 size_t refc; 
     47 struct roar_subscriber * next; 
     48}; 
     49 
    3850//ll 
Note: See TracChangeset for help on using the changeset viewer.