HandmadeHero/project/platform/jsl.h

19 lines
395 B
C
Raw Normal View History

2023-09-15 18:35:27 -07:00
// Joyshock grime wrapper
2023-09-20 21:26:23 -07:00
#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 )
2023-09-15 18:35:27 -07:00
#endif
#include "JoyShockLibrary/JoyShockLibrary.h"
2023-09-20 21:26:23 -07:00
#ifdef COMPILER_CLANG
# pragma clang diagnostic pop
#elif COMPILER_MSVC
# pragma warning( pop )
2023-09-15 18:35:27 -07:00
#endif