此处所列的文章均是我自己从国外的网站摘抄并翻译的,由于英文水平有限,里面肯定有不少错漏.翻译这些东西没有其他的什么用途,只是提高自己的英语阅读能力和编程技术水平而已     
摘要: TFiler = class(TObject) private FStream: TStream;//流,将FBuffer缓冲区的内容写入流 FBuffer: Pointer; //内存 FBufSize: Integer;//内存大小 FBufPos: Integer; FBufEnd: Integer; FRoot: TComponent; FLookupRoot: TComponent; F... 阅读全文
posted @ 2010-11-14 22:22 AppleAndPear 阅读(350) 评论(0) 推荐(0) 编辑
摘要: The GlobalAlloc function allocates the specified number of bytes from the heap. In the linear Win32 API environment, there is no difference between the local heap and the global heap. HGLOBAL GlobalAl... 阅读全文
posted @ 2010-11-14 21:32 AppleAndPear 阅读(462) 评论(0) 推荐(0) 编辑
摘要: function FileOpen(const FileName: string; Mode: LongWord): Integer;{$IFDEF MSWINDOWS}const AccessMode: array[0..2] of LongWord = ( GENERIC_READ, //DWORD($80000000); GENERIC_WRITE, //$40000000; GENERIC... 阅读全文
posted @ 2010-11-14 20:09 AppleAndPear 阅读(266) 评论(0) 推荐(0) 编辑