BridgeAlloc
函数描述。
void* BridgeAlloc( size_t size // memory size to allocate );
参数
size
Memory size (in bytes) to allocate.
返回值
Returns a pointer to the memory block allocated. If an error occurs allocating memory, then x64dbg is closed down.
示例
auto ptr = (char*)BridgeAlloc(128); //do something with ptr BridgeFree(ptr);