Ниже предоставлен полный список пользовательских функций раздела "Memory Management", доступных в AutoIt. Кликните по имени функции для получения детального описания
Для использования этих функций необходимо добавить строку #include <Memory.au3>.
| Функция | Описание |
|---|---|
| _MemGlobalAlloc | Выделяет указанное количество байт из кучи |
| _MemGlobalFree | Frees the specified global memory object and invalidates its handle |
| _MemGlobalLock | Locks a global memory object and returns a pointer to the first byte of the object's memory block |
| _MemGlobalSize | Retrieves the current size of the specified global memory object |
| _MemGlobalUnlock | Decrements the lock count associated with a memory object that was allocated with GMEM_MOVEABLE |
| _MemMoveMemory | Moves memory either forward or backward, aligned or unaligned |
| _MemVirtualAlloc | Reserves or commits a region of pages in the virtual address space of the calling process |
| _MemVirtualAllocEx | Reserves a region of memory within the virtual address space of a specified process |
| _MemVirtualFree | Releases a region of pages within the virtual address space of a process |
| _MemVirtualFreeEx | Releases a region of pages within the virtual address space of a process |