Fixed a name clash with the langauge

This commit is contained in:
2022-11-07 16:44:21 +00:00
parent d40234637a
commit 7c886b071f
7 changed files with 11 additions and 10 deletions

2
Toy

Submodule Toy updated: 14710dec90...8498864dde

View File

@@ -1,4 +1,4 @@
#include "common.h"
#include "core_common.h"
STATIC_ASSERT(sizeof(char) == 1);
STATIC_ASSERT(sizeof(short) == 2);

View File

@@ -1,5 +1,8 @@
#pragma once
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

View File

@@ -1,13 +1,13 @@
#pragma once
#include "common.h"
#include "core_common.h"
#include "engine_node.h"
#include "interpreter.h"
#include "literal_array.h"
#include "literal_dictionary.h"
#include <SDL2/SDL.h>
#include "core_common.h"
#include <sys/time.h>

View File

@@ -1,12 +1,11 @@
#pragma once
#include "common.h"
#include "core_common.h"
#include "literal_dictionary.h"
#include "interpreter.h"
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include "core_common.h"
#define OPAQUE_TAG_ENGINE_NODE 1

View File

@@ -3,8 +3,7 @@
#include "memory.h"
#include "engine.h"
#include <SDL2/SDL.h>
#include "core_common.h"
static int nativeMapInputEventToKey(Interpreter* interpreter, LiteralArray* arguments, LiteralDictionary* symKeyEventsPtr, char* fnName) {
//checks

View File

@@ -1,6 +1,6 @@
#pragma once
#include "common.h"
#include "core_common.h"
char* readFile(char* path, size_t* fileSize);
void writeFile(char* path, unsigned char* bytes, size_t size);