コード例 #1
0
ファイル: XMemory.cs プロジェクト: m00rgy/AmeisenBotX
        public bool FreeMemory(IntPtr address)
        {
            if (MemoryAllocations.ContainsKey(address))
            {
                MemoryAllocations.Remove(address);
                return(VirtualFreeEx(ProcessHandle, address, 0, AllocationType.Release));
            }

            return(false);
        }