代码搜索:CFile

找到约 2,096 项符合「CFile」的源代码

代码结果 2,096
www.eeworm.com/read/119007/14844509

cpp secretkeyedit.cpp

// SecretKeyEdit.cpp : implementation file // #include "stdafx.h" #include "secretchat.h" #include "SecretKeyEdit.h" #include "RSA.h" #include "SecretChatDlg.h" #ifdef _DEBUG #define new
www.eeworm.com/read/118293/14877592

cpp max.cpp

// MAX.cpp : implementation file // #include "stdafx.h" #include "DICTIONARY.h" #include "MAX.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #
www.eeworm.com/read/117691/14908689

cpp fs.cpp

#include "StdAfx.h" #include "fs.h" #include using namespace std; char*sname = "disk.bin"; FS::FS() { root = new Dictionary("root",NULL); try{ CFile file(sname,CFile::modeRead|CFi
www.eeworm.com/read/117410/14925663

cpp fileexampledlg.cpp

// FileExampleDlg.cpp : implementation file // #include "stdafx.h" #include "FileExample.h" #include "FileExampleDlg.h" #include "FileOP.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_
www.eeworm.com/read/117410/14925967

cpp fileexampledlg.cpp

// FileExampleDlg.cpp : implementation file // #include "stdafx.h" #include "FileExample.h" #include "FileExampleDlg.h" #include "FileOP.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_
www.eeworm.com/read/117345/14929468

cpp helpdlg.cpp

// HelpDlg.cpp : implementation file // #include "stdafx.h" #include "EWord.h" #include "HelpDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__;
www.eeworm.com/read/218140/14933443

cpp cdownload.cpp

// cdownload.cpp: implementation of the cdownload class. // ////////////////////////////////////////////////////////////////////// //************************************************************* /
www.eeworm.com/read/116455/14969508

txt 实现文件加密功能.txt

我前几天在VC知识库(VCKBASE.COM)下载了一个 "徐景周" 做的一个叫的小工具的源代码,我把它编译后拿文件来实验一下发现它对大多数文件都不管用.比如,加密文本文件只有文件的前一部分被加密而大部分还完整的存在, 如果用来加密mp3,简直就不起作用,加密后的mp3还是能很好的从头播放的尾..所以我自己发明了一种文件加密的方法,虽然很简单,但是能安全地加密任何计算机上的文件而且还可 ...
www.eeworm.com/read/115528/15011309

cpp ttyview.cpp

// TTYView.cpp : implementation of the CTTYView class // #include "stdafx.h" #include "TTY.h" #include "SickDld.h" #include "TTYDoc.h" #include "TTYView.h" #ifdef _DEBUG #define new DEBUG_
www.eeworm.com/read/215814/15046929

txt problem.txt

在文件发送过程中: 每次发送100个字节,循环发送,若在两次发送间隔内不设置时间停顿,则接收不到数据? 即使文件数据不足100个字节,仍会遇到相同问题 怀疑:发送速度远小于磁盘读写速度导致发送缓冲区溢出? 串口设置的问题?超时?数据位? 在两台PC机之间传输数据时,设置每发出一帧数据,Sleep 1ms,可以收到全部字节,但是有乱码 ...