摘要: // 获取Windows目录function GetWindowsPath: String;var S:PChar;begin GetMem(S, MAX_PATH); GetWindowsDirectory(S,MAX_PATH); Result := S; FreeMem(S);end; 阅读全文
posted @ 2011-06-16 10:24 九月的海 阅读(301) 评论(0) 推荐(1) 编辑