Powered by: 博客园
模板提供:沪江博客
博客园 | 首页 | 发新随笔 | 发新文章 | 联系 | 订阅订阅 | 管理

03 2008 档案

 
转载
摘要: 当一个可执行程序exe在执行过程中,程序文件无法删除,这是因为系统将每个正在运行的程序对应的硬盘文件映射到内存,即虚拟内存,要实现自删除,关键一点在程序退出前将程序从内存映射中解放出来,然后再调用文件操作函数删除程序文件!typedef int (WINAPI *PFClose)(LPVOID); OSVERSIONINFO os_info; os_info.dwOSVersionInfoSize...阅读全文
posted @ 2008-03-30 14:27 floerggyy 阅读(44) | 评论 (0) 编辑
zip文件格式
摘要: File: APPNOTE.TXT - .ZIP File Format SpecificationVersion: 6.3.2 Revised: September 28, 2007Copyright (c) 1989 - 2007 PKWARE Inc., All Rights Reserved.The use of certain technological aspects disclose...阅读全文
posted @ 2008-03-30 12:18 floerggyy 阅读(745) | 评论 (0) 编辑
C 语言 相关资源 精选
摘要: 语言标准及文档● ISO C99http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1124.pdf● ANSI C Rationalehttp://www.quut.com/c/rat/title.htmlFAQ (常见问题)● comp.lang.c FAQhttp://c-faq.com/● C-FAQ 中文版http://c-faq-chn.s...阅读全文
posted @ 2008-03-16 16:41 floerggyy 阅读(76) | 评论 (0) 编辑
zlib usage
摘要: We often get questions about how the deflate() and inflate() functions should be used.Users wonder when they should provide more input, when they should use more output,what to do with a Z_BUF_ERROR, ...阅读全文
posted @ 2008-03-04 09:33 floerggyy 阅读(514) | 评论 (0) 编辑