comparison mp3lib/mp3.h @ 27341:e7c989f7a7c9

Start unifying names of internal preprocessor directives. Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable.
author diego
date Wed, 30 Jul 2008 12:01:30 +0000
parents f580a7755ac5
children 9e739bdb049c
comparison
equal deleted inserted replaced
27340:33274ce3cce0 27341:e7c989f7a7c9
1 /* MP3 Player Library 2.0 (C) 1999 A'rpi/Astral&ESP-team */ 1 /* MP3 Player Library 2.0 (C) 1999 A'rpi/Astral&ESP-team */
2 2
3 /* decoder level: */ 3 /* decoder level: */
4 #ifdef USE_FAKE_MONO 4 #ifdef CONFIG_FAKE_MONO
5 extern void MP3_Init(int fakemono); 5 extern void MP3_Init(int fakemono);
6 #else 6 #else
7 extern void MP3_Init(); 7 extern void MP3_Init();
8 #endif 8 #endif
9 extern int MP3_Open(char *filename,int buffsize); 9 extern int MP3_Open(char *filename,int buffsize);