HandmadeHero/project/platform/jsl.h
2023-09-23 21:16:10 -04:00

20 lines
409 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 "dependencies/JoyShockLibrary/JoyShockLibrary.h"
#ifdef COMPILER_CLANG
# pragma clang diagnostic pop
#elif COMPILER_MSVC
# pragma warning( pop )
#endif