Changeset 5378:481cd842e596 in roaraudio


Ignore:
Timestamp:
12/24/11 17:47:01 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

started with some flags needed for #127

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/vio.h

    r5377 r5378  
    5050#define ROAR_VIOF_TRUNC     O_TRUNC 
    5151#define ROAR_VIOF_NONBLOCK  O_NONBLOCK 
     52 
     53#define ROAR_VIO_FLAGS_NONE        0x00000000UL 
     54#define ROAR_VIO_FLAGS_FREESELF    0x00000020UL /* Free the VIO object */ 
    5255 
    5356struct roar_connection; 
  • libroar/vio.c

    r5377 r5378  
    5252 
    5353 memset((void*)calls, 0, sizeof(struct roar_vio_calls)); 
     54 calls->flags = ROAR_VIO_FLAGS_NONE; 
     55 calls->refc  = 0; 
    5456 
    5557 return 0; 
Note: See TracChangeset for help on using the changeset viewer.