Created
March 18, 2013 08:28
-
-
Save aras-p/5185750 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifdef CGBATCH_DLL | |
| #if UNITY_WIN | |
| #define CGBATCH_API extern "C" __declspec(dllexport) | |
| #else | |
| #define CGBATCH_API extern "C" __attribute__((visibility("default"))) | |
| #endif | |
| #else | |
| #if UNITY_WIN | |
| #define CGBATCH_API extern "C" __declspec(dllimport) | |
| #else | |
| #define CGBATCH_API extern "C" | |
| #endif | |
| #endif | |
| CGBATCH_API int RunCgBatchUnitTests(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment