File: Log.h

package info (click to toggle)
sonivox 3.6.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,424 kB
  • sloc: ansic: 67,233; python: 8,597; cpp: 396; asm: 281; xml: 28; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#define ALOGE(...)
#define ALOGV(...)

#if defined(__APPLE__) && defined (__APPLE_CC__)
#include <fcntl.h>
#include <sys/types.h>
typedef __int64_t off64_t;
#endif

#if defined(__WIN32__)
#define OPEN_FLAG _O_BINARY
#elif defined(__linux__)
#define OPEN_FLAG O_LARGEFILE
#else
#define OPEN_FLAG O_CREAT
#endif