Dephi/C++交流

好记性不如烂笔头,记录下过程中的点点滴滴!

导航

2008年5月23日

摘要: char *strcpy(char *strDest,const char *strSrc){ if ((strDest==NULL)||(strSrc==NULL)) throw "Invalid argument(s)"; char *strDestCopy=strDest; while ((*strDestCopy++=*strSrc++)!='\0'); return strDes... 阅读全文

posted @ 2008-05-23 13:53 sunhj 阅读(933) 评论(0) 推荐(0)

摘要: SHFileOperation Function Copies, moves, renames, or deletes a file system object. Syntax int SHFileOperation( LPSHFILEOPSTRUCT lpFileOp ); Parameters lpFileOp [in] Pointer to an SHFILE... 阅读全文

posted @ 2008-05-23 09:05 sunhj 阅读(2244) 评论(0) 推荐(0)