代码搜索:CFile

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

代码结果 2,096
www.eeworm.com/read/123136/14646147

asm subctrl.asm

??CFILE (C:\H8S\LTMeas\LTDriver\SubCtrl.c) ??CFILE (H8S2144.h) ??CFILE (C:\H8S\LTMeas\LTDriver\SubCtrl.c) ??CFILE (Global.h) ??CFILE ($$string.h) ??CFILE ($$stddef.h) ??CFILE ($$string.h) ??CFI
www.eeworm.com/read/223101/14658961

h image.h

#ifndef _IMAGE_H_ #define _IMAGE_H_ class CImage : public CObject { DECLARE_SERIAL(CImage); private: DWORD Transform(WORD width); DWORD ByteNumForOneLine(WORD nD
www.eeworm.com/read/222629/14682041

cpp dipdoc.cpp

// dipDoc.cpp : implementation of the CDipDoc class // #include "stdafx.h" #include "dip.h" #include "afx.h" #include "dipDoc.h" #include "GreyDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #
www.eeworm.com/read/222279/14698685

h cor0.h

#ifndef __COR0_H #define __COR0_H #include #define BOOLEAN int #define FALSE 0 #define TRUE 1 #define NRDF 100 #define NSTR 90 #define NTITLE 8 #define WORD unsigned int #define BY
www.eeworm.com/read/121943/14728968

txt 3.txt

文件I/O   虽然使用CArchive类内建的序列化功能是保存和加载持久性数据的便捷方式,但有时在程序中需要对文件处理过程拥有更多的控制权,对于这种文件输入输出(I/O)服务的需求,Windows提供了一系列相关的API函数,并由MFC将其封装为<mark>CFile</mark>类,提供了对文件进行打开,关闭,读,写,删除,重命名以及获取文件信息等文件操作的基本功能,足以处理任意类型的文件操作。<mark>CFile</mark>类是MF ...
www.eeworm.com/read/121935/14729123

cpp ecfiledlg.cpp

// ecfileDlg.cpp : implementation file // #include "stdafx.h" #include "ecfile.h" #include "ecfileDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FI
www.eeworm.com/read/121761/14739095

cpp eastdrawdoc.cpp

// EastDrawDoc.cpp : implementation of the CEastDrawDoc class // #include "stdafx.h" #include "EastDraw.h" #include "EastDrawDoc.h" #include"EastDrawView.h" #ifdef _DEBUG #define new DEBU
www.eeworm.com/read/119334/14832312

cpp archiverecovery.cpp

//this file is part of eMule //Copyright (C)2002 Merkur ( devs@emule-project.net / http://www.emule-project.net ) // //This program is free software; you can redistribute it and/or //modify it und
www.eeworm.com/read/119291/14833715

cpp testclient.cpp

// TestClient.cpp: implementation of the CTestClient class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "SyncClient.h" #include "TestC
www.eeworm.com/read/118811/14853860

txt p2p即pear to pear .txt

p2p即pear to pear ,就是点对点体系结构。它实际了主机间的直接通信,减轻了服务器的负担。我对利用p2p实现像电驴、BT下载、百度下吧这样的软件的一些问题跟大家交流一下。 1. 有没有服务器,服务器到底做些什么工作。 目前来讲很多p2p软件是有中心服务器的,其主要工作是记录每个节点(边缘主机)共享的文件列表及相关信息,或者换句话说,它记录的是共享了某个文件的主机 ...