请问各位DelphiMM是什么东东?谢谢。

解决方案 »

  1.   

    我们的插件外壳程序与普通应用程序之间的唯一不同就在于工程源文件中出现在uses子句中的Sharemem单元和加载插件文件的代码。任何在自身与子DLL之间传递字符串参数的应用程序都需要Sharemem单元,它是DelphiMM.dll(Delphi提供该文件)的接口。要测试这个外壳,需要将DelphiMM.dll文件从Delphi\Bin目录复制到path环境变量所包含的路径或者应用程序所在目录中。发布最终版本时也需要同时分发该文件。
      

  2.   

    { *********************************************************************** }
    {                                                                         }
    { Delphi Runtime Library                                                  }
    {                                                                         }
    { Copyright (c) 2000, 2001 Borland Software Corporation                   }
    {                                                                         }
    { *********************************************************************** }library DelphiMM;{$IMAGEBASE $41008000}
    {$R *.RES}const
      BorlandMM = 'borlndmm.dll';function SysGetMem(Size: Integer): Pointer; external BorlandMM name '@Borlndmm@SysGetMem$qqri';
    function SysFreeMem(P: Pointer): Integer; external BorlandMM name '@Borlndmm@SysFreeMem$qqrpv';
    function SysReallocMem(P: Pointer; Size: Integer): Pointer; external BorlandMM name '@Borlndmm@SysReallocMem$qqrpvi';
    function GetHeapStatus: THeapStatus; external BorlandMM;
    function GetAllocMemCount: Integer; external BorlandMM;
    function GetAllocMemSize: Integer; external BorlandMM;
    procedure DumpBlocks; external BorlandMM;
    function GetMemory(Size: Integer): Pointer; cdecl; external BorlandMM;
    function FreeMemory(P: Pointer): Integer; cdecl; external BorlandMM;
    function ReallocMemory(P: Pointer; Size: Integer): Pointer; cdecl; external BorlandMM;exports
      SysGetMem,
      SysFreeMem,
      SysReallocMem,
      GetMemory,
      FreeMemory,
      ReallocMemory,
      DumpBlocks,
      GetHeapStatus,
      GetAllocMemCount,
      GetAllocMemSize;begin
    end.
      

  3.   

    也有可能是ModelMaker 。MM,不过用的人不是很多
    ModelMaker MM DesignPatterns
      

  4.   

    delphi mm 都不知.
    就是一個寫delphi的mm咯
      

  5.   

    有可能是ModalMaker,不过也可能是MemoryManager,内存管理方面的东西
      

  6.   

    我是想问DelphiMM.pas是什么会事?谢谢!以上各位
      

  7.   

    楼主不够厚道!
    http://www.google.com/search?q=DelphiMM.pas&hl=zh-CN&lr=&newwindow=1&filter=0http://www.baidu.com/baidu?lm=0&si=&rn=10&ie=gb2312&ct=0&wd=delphimm%2Epas&cl=0
      

  8.   

    我是想知道DelphiMM.pas有什么用?不是要搜索,搜索我也会。装了Delphi之后,在Delphi文件夹里面
    可以找到DelphiMM.pas单元文件。