Sha256: 83a7d74153bda9b22093ac4d014b15e6982321867831d117710525a1aa733e5a

Contents?: true

Size: 359 Bytes

Versions: 1

Compression:

Stored size: 359 Bytes

Contents

#ifndef _IV_PLATFORM_H_
#define _IV_PLATFORM_H_

#if defined(WIN32) || defined(WIN64)
#ifndef OS_WIN
#define OS_WIN 1
#endif  // OS_WIN
#elif defined(__APPLE__) || defined(__darwin__)
#ifndef OS_MACOSX
#define OS_MACOSX 1
#endif  // OS_MACOSX
#elif defined(__linux__)
#ifndef OS_LINUX
#define OS_LINUX 1
#endif  // OS_LINUX
#endif

#endif  // _IV_PLATFORM_H_

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iv-phonic-0.1.8 ext/include/iv/platform.h