Change types
This commit is contained in:
parent
c05b586f6c
commit
c10f0e5caf
|
@ -22,10 +22,10 @@ int gMemoryBlocksCurrentCount = 0;
|
||||||
int gMemoryBlockMaximumCount = 0;
|
int gMemoryBlockMaximumCount = 0;
|
||||||
|
|
||||||
// 0x51DEE4
|
// 0x51DEE4
|
||||||
int gMemoryBlocksCurrentSize = 0;
|
size_t gMemoryBlocksCurrentSize = 0;
|
||||||
|
|
||||||
// 0x51DEE8
|
// 0x51DEE8
|
||||||
int gMemoryBlocksMaximumSize = 0;
|
size_t gMemoryBlocksMaximumSize = 0;
|
||||||
|
|
||||||
// 0x4C5A80
|
// 0x4C5A80
|
||||||
char* internal_strdup(const char* string)
|
char* internal_strdup(const char* string)
|
||||||
|
|
|
@ -29,8 +29,8 @@ extern ReallocProc* gReallocProc;
|
||||||
extern FreeProc* gFreeProc;
|
extern FreeProc* gFreeProc;
|
||||||
extern int gMemoryBlocksCurrentCount;
|
extern int gMemoryBlocksCurrentCount;
|
||||||
extern int gMemoryBlockMaximumCount;
|
extern int gMemoryBlockMaximumCount;
|
||||||
extern int gMemoryBlocksCurrentSize;
|
extern size_t gMemoryBlocksCurrentSize;
|
||||||
extern int gMemoryBlocksMaximumSize;
|
extern size_t gMemoryBlocksMaximumSize;
|
||||||
|
|
||||||
char* internal_strdup(const char* string);
|
char* internal_strdup(const char* string);
|
||||||
void* internal_malloc(size_t size);
|
void* internal_malloc(size_t size);
|
||||||
|
|
Loading…
Reference in New Issue