mirror of
https://github.com/Ed94/HandmadeHero.git
synced 2024-11-10 03:44:53 -08:00
19 lines
395 B
C
19 lines
395 B
C
// Joyshock grime wrapper
|
|
|
|
#include "grime.h"
|
|
|
|
#ifdef COMPILER_CLANG
|
|
# pragma clang diagnostic push
|
|
# pragma clang diagnostic ignored "-Wreturn-type-c-linkage"
|
|
#elif COMPILER_MSVC
|
|
# pragma warning( push )
|
|
# pragma warning( disable: 4820 )
|
|
#endif
|
|
|
|
#include "JoyShockLibrary/JoyShockLibrary.h"
|
|
|
|
#ifdef COMPILER_CLANG
|
|
# pragma clang diagnostic pop
|
|
#elif COMPILER_MSVC
|
|
# pragma warning( pop )
|
|
#endif |