mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-27 07:10:24 +00:00
25 lines
378 B
C
25 lines
378 B
C
#pragma once
|
|
|
|
#ifndef STUBS_H
|
|
#define STUBS_H
|
|
|
|
#include "export.h"
|
|
|
|
struct MEMORY_ALLOC
|
|
{
|
|
void* mAddress;
|
|
u32 mSize;
|
|
MEMORY_ALLOC* mNext;
|
|
MEMORY_ALLOC* mPrev;
|
|
};
|
|
|
|
EXPORT i32 syRtcInit(void);
|
|
EXPORT void removeMemoryAlloc(MEMORY_ALLOC*);
|
|
EXPORT void syMallocFinish(void);
|
|
EXPORT void syMallocInit(void);
|
|
EXPORT void *syMalloc(u32);
|
|
|
|
void validate_MEMORY_ALLOC(void);
|
|
|
|
#endif
|