摘要: 1 FILE *hfileP12=NULL; 2 // unsigned char* pbP12Data; // 数据 3 unsigned long ulP12DataLen; // 数据长度 4 5 if( !(hfileP12= fopen((const char*)pbType,"rb"))) 6 { 7 return ; 8 } 9 fseek(hfileP12,0,SEEK_END);10 DWORD dwFileSize =ftell(hfileP12);11 12 ulP12DataLen = dwFileSize; //长度13 14 fseek(hfil 阅读全文
posted @ 2013-10-17 17:18 宁静世界 阅读(210) 评论(0) 推荐(0)
摘要: 转自:http://blog.csdn.net/clever101/article/details/5334369代码:http://www.pudn.com/downloads231/sourcecode/windows/detail1086962.html 阅读全文
posted @ 2013-10-17 08:55 宁静世界 阅读(129) 评论(0) 推荐(0)