cadb3627fc
librbcodec users must provide these two files when the library is built. rbcodecconfig.h provides configuration #defines and basic types, and will be included by public librbcodec headers, so it must not conflict with the user's code. rbcodecplatform.h provides various OS functions, and will only be included by source files and private headers. This system is intended to provide maximum flexibility for use on embedded systems, where no operating system headers are included. Unix systems can just copy rbcodecconfig-example.h and rbcodecplatform-unix.h with minimal changes. Change-Id: I350a2274d173da391fd1ca00c4202e9760d91def Reviewed-on: http://gerrit.rockbox.org/143 Reviewed-by: Nils Wallménius <nils@rockbox.org> Tested-by: Nils Wallménius <nils@rockbox.org>
22 lines
545 B
C
22 lines
545 B
C
#ifndef RBCODECCONFIG_H_INCLUDED
|
|
#define RBCODECCONFIG_H_INCLUDED
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
/* NULL, offsetof, size_t */
|
|
#include <stddef.h>
|
|
|
|
/* ssize_t, off_t, open, close, read, lseek, SEEK_SET, SEEK_CUR, SEEK_END,
|
|
* O_RDONLY, O_WRONLY, O_CREAT, O_APPEND, MAX_PATH, filesize */
|
|
#include "file.h"
|
|
|
|
/* {,u}int{8,16,32,64}_t, , intptr_t, uintptr_t, bool, true, false, swap16,
|
|
* swap32, hto{be,le}{16,32}, {be,le}toh{16,32}, ROCKBOX_{BIG,LITTLE}_ENDIAN,
|
|
* {,U}INT{8,16,32,64}_{MIN,MAX} */
|
|
#include "system.h"
|
|
|
|
#endif
|
|
|
|
#endif
|