摘要: Move(ABuffer,P, Sizeof(ABuffer)); //指针传递 Move(ABuffer^,P^, Sizeof(TArrayByte)); //复制内存块CopyMemory(@P, @ABuffer, SizeOf(ABuffer)); //指针传递CopyMemory(P,ABuffer, Sizeof(TArrayByte));//复制内存块 阅读全文
posted @ 2015-12-10 09:13 h2z 阅读(480) 评论(0) 推荐(0)
摘要: http://delphi.wikia.com/wiki/CompilerVersion_Constant The CompilerVersion constant identifies the internal version number of the Delphi compiler. It is defined in the System unit and may be referenced... 阅读全文
posted @ 2015-12-10 08:42 h2z 阅读(256) 评论(0) 推荐(0)