Skip to content

Instantly share code, notes, and snippets.

@aras-p
Created March 18, 2013 08:28
Show Gist options
  • Select an option

  • Save aras-p/5185750 to your computer and use it in GitHub Desktop.

Select an option

Save aras-p/5185750 to your computer and use it in GitHub Desktop.
#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