Merge pull request #18 from ChrisDill/patch-2

Fix dropOpen reset and added dllexport
This commit is contained in:
Ray
2018-09-26 16:39:54 +02:00
committed by GitHub

View File

@ -108,14 +108,14 @@
#include "raylib.h" #include "raylib.h"
#endif #endif
#define RAYGUI_STATIC // #define RAYGUI_STATIC
#ifdef RAYGUI_STATIC #ifdef RAYGUI_STATIC
#define RAYGUIDEF static // Functions just visible to module including this file #define RAYGUIDEF static // Functions just visible to module including this file
#else #else
#ifdef __cplusplus #ifdef __cplusplus
#define RAYGUIDEF extern "C" // Functions visible from other files (no name mangling of functions in C++) #define RAYGUIDEF extern "C" // Functions visible from other files (no name mangling of functions in C++)
#else #else
#define RAYGUIDEF extern // Functions visible from other files #define RAYGUIDEF __declspec(dllexport) extern // Functions visible from other files
#endif #endif
#endif #endif