heapconst.pas

来自「Delphi Win32核心API参考光盘源码 本书包含了常用的Windows」· PAS 代码 · 共 16 行

PAS
16
字号
unit HeapConst;

interface

{heap function flags.  these are not defined in the Delphi source code}
const
  HEAP_NO_SERIALIZE           = $00000001;
  HEAP_GROWABLE               = $00000002;
  HEAP_GENERATE_EXCEPTIONS    = $00000004;
  HEAP_ZERO_MEMORY            = $00000008;
  HEAP_REALLOC_IN_PLACE_ONLY  = $00000010;

implementation

end.
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?