Changeset 2002:b8f6d20e61dc in roaraudio


Ignore:
Timestamp:
06/15/09 17:47:28 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

implement roar_slp_find_roard()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/slp.c

    r1998 r2002  
    22 
    33/* 
    4  *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008 
     4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009 
    55 * 
    66 *  This file is part of libroar a part of RoarAudio, 
     
    3535#include "libroar.h" 
    3636 
     37char * roar_slp_find_roard   (void) { 
     38 static char addr[80]; 
     39 
     40 if ( roar_slp_find_roard_r(addr, 80) == -1 ) 
     41  return NULL; 
     42 
     43 return addr; 
     44} 
     45 
     46int    roar_slp_find_roard_r (char * addr, size_t len) { 
     47 return -1; 
     48} 
     49 
    3750//ll 
Note: See TracChangeset for help on using the changeset viewer.