4d275b2b21
made mpglib beos compatible git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20383 a95241bf-73f2-0310-859d-f6bbb57e9c96
92 lines
2.2 KiB
C
92 lines
2.2 KiB
C
#ifndef HAIKU_BUILD_COMPATIBILITY_H
|
|
#define HAIKU_BUILD_COMPATIBILITY_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAIKU_TARGET_PLATFORM_LIBBE_TEST
|
|
# define _BE_ERRNO_H_
|
|
// this is what Dano/Zeta is using
|
|
# include <Errors.h>
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
// no addr_t under standard BeOS
|
|
typedef unsigned long haiku_build_addr_t;
|
|
#define addr_t haiku_build_addr_t
|
|
|
|
#ifndef DEFFILEMODE
|
|
# define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
|
|
#endif
|
|
|
|
#ifndef FS_WRITE_FSINFO_NAME
|
|
# define FS_WRITE_FSINFO_NAME 0x0001
|
|
#endif
|
|
|
|
#ifndef B_CURRENT_TEAM
|
|
# define B_CURRENT_TEAM 0
|
|
#endif
|
|
|
|
|
|
#ifndef SYMLOOP_MAX
|
|
# define SYMLOOP_MAX (16)
|
|
#endif
|
|
|
|
#ifndef B_FIRST_REAL_TIME_PRIORITY
|
|
# define B_FIRST_REAL_TIME_PRIORITY B_REAL_TIME_DISPLAY_PRIORITY
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern size_t strnlen(const char *string, size_t count);
|
|
|
|
extern size_t strlcat(char *dest, const char *source, size_t length);
|
|
extern size_t strlcpy(char *dest, const char *source, size_t length);
|
|
|
|
extern char *strcasestr(const char *string, const char *searchString);
|
|
|
|
extern float roundf(float value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
// These are R1-specific extensions
|
|
#ifndef HAIKU_TARGET_PLATFORM_LIBBE_TEST
|
|
# define B_TRANSLATION_MAKE_VERSION(major,minor,revision) ((major << 8) | ((minor << 4) & 0xf0) | (revision & 0x0f))
|
|
# define B_TRANSLATION_MAJOR_VERSION(v) (v >> 8)
|
|
# define B_TRANSLATION_MINOR_VERSION(v) ((v >> 4) & 0xf)
|
|
# define B_TRANSLATION_REVISION_VERSION(v) (v & 0xf)
|
|
#endif // HAIKU_TARGET_PLATFORM_HAIKU
|
|
|
|
#ifdef HAIKU_TARGET_PLATFORM_BEOS
|
|
# define B_REDO 'REDO'
|
|
# define B_BAD_DATA (B_NOT_ALLOWED + 1)
|
|
#endif
|
|
|
|
#if !defined(HAIKU_TARGET_PLATFORM_HAIKU) && !defined(HAIKU_TARGET_PLATFORM_LIBBE_TEST)
|
|
#ifndef B_VECTOR_ICON_TYPE
|
|
#define B_VECTOR_ICON_TYPE 'VICN'
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef INT64_MAX
|
|
#include <limits.h>
|
|
#define INT64_MAX LONGLONG_MAX
|
|
#endif
|
|
|
|
#define B_MPEG_2_AUDIO_LAYER_1 (enum mpeg_id)0x201
|
|
#define B_MPEG_2_AUDIO_LAYER_2 (enum mpeg_id)0x202
|
|
#define B_MPEG_2_AUDIO_LAYER_3 (enum mpeg_id)0x203
|
|
#define B_MPEG_2_VIDEO (enum mpeg_id)0x211
|
|
#define B_MPEG_2_5_AUDIO_LAYER_1 (enum mpeg_id)0x301
|
|
#define B_MPEG_2_5_AUDIO_LAYER_2 (enum mpeg_id)0x302
|
|
#define B_MPEG_2_5_AUDIO_LAYER_3 (enum mpeg_id)0x303
|
|
|
|
|
|
#endif // HAIKU_BUILD_COMPATIBILITY_H
|
|
|