Change types

This commit is contained in:
Alexander Batalov 2022-06-11 22:24:55 +03:00
parent c05b586f6c
commit c10f0e5caf
2 changed files with 4 additions and 4 deletions

View File

@ -22,10 +22,10 @@ int gMemoryBlocksCurrentCount = 0;
int gMemoryBlockMaximumCount = 0;
// 0x51DEE4
int gMemoryBlocksCurrentSize = 0;
size_t gMemoryBlocksCurrentSize = 0;
// 0x51DEE8
int gMemoryBlocksMaximumSize = 0;
size_t gMemoryBlocksMaximumSize = 0;
// 0x4C5A80
char* internal_strdup(const char* string)

View File

@ -29,8 +29,8 @@ extern ReallocProc* gReallocProc;
extern FreeProc* gFreeProc;
extern int gMemoryBlocksCurrentCount;
extern int gMemoryBlockMaximumCount;
extern int gMemoryBlocksCurrentSize;
extern int gMemoryBlocksMaximumSize;
extern size_t gMemoryBlocksCurrentSize;
extern size_t gMemoryBlocksMaximumSize;
char* internal_strdup(const char* string);
void* internal_malloc(size_t size);