zoukankan      html  css  js  c++  java
  • Delphi内存操作API函数(备查,并一一学习)

    Delphi内存操作API函数
    System.IsMemoryManagerSet;
    System.Move;
    System.New;
    System.ReallocMem;
    System.ReallocMemory;
    System.SetMemoryManager;
    System.SysAllocMem;
    System.SysFreeMem;
    System.SysGetMem;
    System.SysReallocMem;

    SysUtils.DisposeStr;
    SysUtils.NewStr;

    TlHelp32.Heap32First;
    TlHelp32.Heap32ListFirst;
    TlHelp32.Heap32ListNext;
    TlHelp32.Heap32Next;

    Windows.CopyMemory;
    Windows.FillMemory;
    Windows.GetProcessHeap;
    Windows.GetProcessHeaps;
    Windows.GlobalAlloc;
    Windows.GlobalAllocPtr;
    Windows.GlobalCompact;
    Windows.GlobalDiscard;
    Windows.GlobalFix;
    Windows.GlobalFlags;
    Windows.GlobalFree;
    Windows.GlobalFreePtr;
    Windows.GlobalHandle;
    Windows.GlobalLock;
    Windows.GlobalMemoryStatus;
    Windows.GlobalReAlloc;
    Windows.GlobalReAllocPtr;
    Windows.GlobalSize;
    Windows.GlobalUnfix;
    Windows.GlobalUnlock;
    Windows.GlobalUnWire;
    Windows.GlobalWire;
    Windows.HeapAlloc;
    Windows.HeapCompact;
    Windows.HeapCreate;
    Windows.HeapDestroy;
    Windows.HeapFree;
    Windows.HeapLock;
    Windows.HeapReAlloc;
    Windows.HeapSize;
    Windows.HeapUnlock;
    Windows.HeapValidate;
    Windows.HeapWalk;
    Windows.IsBadCodePtr;
    Windows.IsBadReadPtr;
    Windows.IsBadStringPtr;
    Windows.IsBadWritePtr;
    Windows.MoveMemory;
    Windows.VirtualAlloc;
    Windows.VirtualAllocEx;
    Windows.VirtualFree;
    Windows.VirtualFreeEx;
    Windows.VirtualLock;
    Windows.VirtualProtect;
    Windows.VirtualProtectEx;
    Windows.VirtualQuery;
    Windows.VirtualQueryEx;
    Windows.ZeroMemory;

    Windows.LocalAlloc;
    Windows.LocalCompact;
    Windows.LocalDiscard;
    Windows.LocalFlags;
    Windows.LocalFree;
    Windows.LocalLock;
    Windows.LocalReAlloc;
    Windows.LocalShrink;
    Windows.LocalSize;
    Windows.LocalUnlock;

  • 相关阅读:
    Python multiprocessing相关疑问
    Tornado demo3
    WebSockets
    Tornado Demo1---webspider分析
    Python assert断言
    Python学习之--数据基础
    Python学习之--python概要
    Python学习之--函数/生成器/装饰器
    Python学习之文件操作
    Python操作MySQL数据库
  • 原文地址:https://www.cnblogs.com/findumars/p/5045111.html
Copyright © 2011-2022 走看看