source: roaraudio/include/libroaryiff/libroaryiff.h @ 341:0f93f89c3c88

Last change on this file since 341:0f93f89c3c88 was 341:0f93f89c3c88, checked in by phi, 16 years ago

adding basic macros for YID<->Roar conv and include roaraudio.h :)

File size: 404 bytes
Line 
1//libroaryiff.h:
2
3#ifndef _LIBROARYIFF_H_
4#define _LIBROARYIFF_H_
5
6#include <roaraudio.h>
7
8#include <Y2/Y.h>           /* Basic Y types and constants. */
9#include <Y2/Ylib.h>        /* YLib functions and structs. */
10
11#include <unistd.h>
12#include <string.h>
13#include <stdlib.h>
14
15// YID 0 is error like -1 on libroar!
16#define ROARYIFF_YID2ROAR(x) ((x)-1)
17#define ROARYIFF_ROAR2YID(x) ((x)+1)
18
19#endif
20
21//ll
Note: See TracBrowser for help on using the repository browser.