breaking engine headers by replacing int with string_t where it's supposed to be

This commit is contained in:
Alibek Omarov
2024-09-05 00:28:23 +03:00
parent ad2191333d
commit eef5cc17b3
3 changed files with 10 additions and 7 deletions

View File

@@ -14,6 +14,9 @@
****/
#ifndef CONST_H
#define CONST_H
#include <stddef.h> // ptrdiff_t
//
// Constants shared by the engine and dlls
// This header file included by engine files and DLL files.
@@ -721,7 +724,7 @@ enum
};
typedef int func_t;
typedef int string_t;
typedef ptrdiff_t string_t;
typedef unsigned short word;