This commit is contained in:
chosenofbear 2021-12-22 03:22:10 +01:00 committed by GitHub
commit 1baf6d21f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 44 additions and 1 deletions

View file

@ -23,6 +23,7 @@
#define BINDING_UTIL_H
#include <ruby.h>
#undef inline //ruby's config.h has #define inline __inline, which cause error in xkeycheck.h
#include "exception.h"

View file

@ -19,6 +19,10 @@
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef _MSC_VER
#define NOMINMAX
#endif
#include <algorithm>
#include "table.h"
#include "binding-util.h"