]>
git.saurik.com Git - cycript.git/blob - extra/clang-c/Platform.h
1 /*===-- clang-c/Platform.h - C Index platform decls -------------*- C -*-===*\
3 |* The LLVM Compiler Infrastructure *|
5 |* This file is distributed under the University of Illinois Open Source *|
6 |* License. See LICENSE.TXT for details. *|
8 |*===----------------------------------------------------------------------===*|
10 |* This header provides platform specific macros (dllimport, deprecated, ...) *|
12 \*===----------------------------------------------------------------------===*/
14 #ifndef LLVM_CLANG_C_PLATFORM_H
15 #define LLVM_CLANG_C_PLATFORM_H
21 /* MSVC DLL import/export. */
24 #define CINDEX_LINKAGE __declspec(dllexport)
26 #define CINDEX_LINKAGE __declspec(dllimport)
29 #define CINDEX_LINKAGE
33 #define CINDEX_DEPRECATED __attribute__((deprecated))
36 #define CINDEX_DEPRECATED __declspec(deprecated)
38 #define CINDEX_DEPRECATED