代码搜索:CFile
找到约 2,096 项符合「CFile」的源代码
代码结果 2,096
www.eeworm.com/read/401752/11551071
h text.h
#include "stdlib.h"
#include "memory.h"
class CFile
{
char c;
FILE *fp;
public:
void open();
void put();
};
www.eeworm.com/read/401752/11551078
cpp text.cpp
#include "stdio.h"
#include "Text.h"
#include "stdlib.h"
#include "memory.h"
void CFile :: open()
{
if((fp=fopen("1.txt","at+"))==NULL)
{
getchar();
exit(1);
}
rewind(fp);
}
v
www.eeworm.com/read/400492/11575888
cpp aboutgame.cpp
// AboutGame.cpp : implementation file
//
#include "stdafx.h"
#include "SkyRiver.h"
#include "AboutGame.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __
www.eeworm.com/read/348371/11598911
h openfile.h
#include "stdafx.h"
#include
BYTE * OpenBMP(CString fileName,long *width,long *height)
{
BYTE * pData;
*width = 0;
*height = 0;
if(fileName=="")
return NULL;
BITMAPINF
www.eeworm.com/read/347953/11622373
cpp lzwfile.cpp
#include "stdafx.h"
#include "lzwtable.h"
#include "lzwcode.h"
#include "lzwfile.h"
// this .cpp is not consider try{}catch{} error case
const int iFileUsedBufferLength=1024*10;
CFile* pfileIn,*
www.eeworm.com/read/157603/11683528
cpp readdata.cpp
// readdata.cpp: implementation of the readdata class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "richtest.h"
#include "readdata.h"
www.eeworm.com/read/157536/11692367
cpp baseclasses.cpp
// BaseClasses.cpp: implementation of the CFace class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "chess.h"
#include "BaseClasses.h"
www.eeworm.com/read/157502/11698646
h gifapi.h
typedef struct gifheader
{
BYTE bySignature[3];
BYTE byVersion[3];
} GIFHEADER;
typedef struct gifscrdesc
{
WORD wWidth;
WORD wDepth;
struct globalfl
www.eeworm.com/read/157220/11729064
with_make kmake.with_make
#!/usr/bin/env perl
BEGIN{ $^W=1 }
$cfile=$ARGV[0];
system("cp $cfile ${cfile}_kmake");
system("cp ${cfile}_new.c $cfile");
system("make");
system("cp ${cfile}_kmake ${cfile}");
www.eeworm.com/read/157220/11729110
perl kmake.perl
#!/usr/bin/env perl
BEGIN{ $^W=1 }
$cfile=$ARGV[0];
system("cp $cfile ${cfile}_kmake");
system("cp ${cfile}_new.c $cfile");
system("gcc $ARGV[0] KSVtime.c");
system("cp ${cfile}_kmake ${cf