heapconst.pas
来自「DelphiWin32核心API参考光盘内容.是学习书籍中的源码,便于学习.」· 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 + -
显示快捷键?