摘要: static DWORD CALLBACK EditStreamCallBack(DWORD dwCookie, LPBYTE pbBuff, LONG cb, LONG *pcb){ char *pstr = (char *)dwCookie; int nLen = strlen(pstr); if(nLen<cb) { CopyMemory(pbBuff,pstr,nLen); } e... 阅读全文
posted @ 2010-02-23 21:30 吾非无心 阅读(341) 评论(0) 推荐(0) 编辑