代码搜索:CFile

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

代码结果 2,096
www.eeworm.com/read/332075/12781417

txt cfile1.txt

6 10 0.5 0.10 0.075 0.01 0.0 1.0 0.0 1.0 0.0 ###000:0 10 ###100:1 10 ##0#01:0 10 ##1#01:1 10 #0##10:0 10 #1##10:1 10 0###11:0 10 1###11:1 10 ######:0 10 ######:1 10 n
www.eeworm.com/read/244208/12878206

txt cfile1.txt

6 10 0.5 0.10 0.075 0.01 0.0 1.0 0.0 1.0 0.0 ###000:0 10 ###100:1 10 ##0#01:0 10 ##1#01:1 10 #0##10:0 10 #1##10:1 10 0###11:0 10 1###11:1 10 ######:0 10 ######:1 10 n
www.eeworm.com/read/139615/13147076

txt cfile1.txt

6 10 0.5 0.10 0.075 0.01 0.0 1.0 0.0 1.0 0.0 ###000:0 10 ###100:1 10 ##0#01:0 10 ##1#01:1 10 #0##10:0 10 #1##10:1 10 0###11:0 10 1###11:1 10 ######:0 10 ######:1 10 n
www.eeworm.com/read/138830/13208906

txt cfile1.txt

6 10 0.5 0.10 0.075 0.01 0.0 1.0 0.0 1.0 0.0 ###000:0 10 ###100:1 10 ##0#01:0 10 ##1#01:1 10 #0##10:0 10 #1##10:1 10 0###11:0 10 1###11:1 10 ######:0 10 ######:1 10 n
www.eeworm.com/read/136385/13380710

c cfile2.c

section ("pm_ovly_5") int Subtract(int val1,int val2){ return(val1 -val2); //实现-1的功能 }
www.eeworm.com/read/136385/13380713

c cfile1.c

/* 用C语言实现的作业2的要求*/ #define PmPage(x) { asm ( "PMOVLAY=" #x ";" ); } #define DmPage(x) { asm ( "DMOVLAY=" #x ";" ); } extern int Add(int,int); extern int Subtract(int,int); section ("dm_ovly_1
www.eeworm.com/read/322106/13389756

txt cfile1.txt

6 10 0.5 0.10 0.075 0.01 0.0 1.0 0.0 1.0 0.0 ###000:0 10 ###100:1 10 ##0#01:0 10 ##1#01:1 10 #0##10:0 10 #1##10:1 10 0###11:0 10 1###11:1 10 ######:0 10 ######:1 10 n
www.eeworm.com/read/314717/13560534

txt cfile1.txt

6 10 0.5 0.10 0.075 0.01 0.0 1.0 0.0 1.0 0.0 ###000:0 10 ###100:1 10 ##0#01:0 10 ##1#01:1 10 #0##10:0 10 #1##10:1 10 0###11:0 10 1###11:1 10 ######:0 10 ######:1 10 n
www.eeworm.com/read/312351/13612827

txt cfile1.txt

6 10 0.5 0.10 0.075 0.01 0.0 1.0 0.0 1.0 0.0 ###000:0 10 ###100:1 10 ##0#01:0 10 ##1#01:1 10 #0##10:0 10 #1##10:1 10 0###11:0 10 1###11:1 10 ######:0 10 ######:1 10 n
www.eeworm.com/read/311357/13631870

txt cfile大文件.txt

随着Windows 2000和XP的普及,现在的大文件越来越多,而VC6中MFC的<mark>CFile</mark>类只支持不大于4GB的文件, 原因在于<mark>CFile</mark>类中使用了32位整型来处理文件,32位数的范围是2的32次方(4GB),超过这个范围的文件<mark>CFile</mark>就管不了,微软.Net中VC7的<mark>CFile</mark>类支持大于4GB的文件,而.Net还不普及,开发桌面应用VC6还是首选,所以我们可以参照VC7写一个<mark>CFile</mark>的继承类 ...