Changeset 339:af03949cb5eb in roaraudio


Ignore:
Timestamp:
07/28/08 23:52:52 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

done some basic code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroaryiff/connection.c

    r338 r339  
    33#include <libroaryiff.h> 
    44 
     5YConnection *YOpenConnection (const char *start_arg, const char *con_arg) { 
     6 YConnection * con = malloc(sizeof(YConnection)); 
     7 
     8 memset(con, 0, sizeof(YConnection)); 
     9 
     10 return con; 
     11} 
     12 
     13void YCloseConnection (YConnection *connection, Boolean no_shutdown) { 
     14 if ( !connection ) 
     15  return; 
     16 
     17} 
     18 
    519//ll 
Note: See TracChangeset for help on using the changeset viewer.