資源簡介
2個vc6.0工程,一個是DLL工程,負責讀取文本文件,另一個是MFC對話框工程,負責調用DLL讀取文本文件并在編輯框顯示
代碼片段和文件信息
#include?“StdAfx.h“
#include?“Dll.h“
#include?
#include?
#include?
BOOL?ReadStringFromFile(LPTSTR?buffer?DWORD?len?LPCTSTR?lpszFileName)
{
assert(buffer);
FILE*?fp?=?_tfopen(lpszFileName?TEXT(“rt“));
if(fp)
{
//?Get?the?size?of?file?in?bytes.
long?curPos?=?ftell(fp);
fseek(fp?0?SEEK_END);
long?nSize?=?ftell(fp);
fseek(fp?curPos?SEEK_SET);
//?Read?all.
fread((void*)buffer?1?nSize?fp);
fclose(fp);
return?TRUE;
}
return?FALSE;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2015-07-15?15:21??TxtReadDll\
?????目錄???????????0??2015-07-15?15:21??TxtReadDll\Debug\
?????文件?????????519??2015-07-15?14:44??TxtReadDll\Dll.cpp
?????文件?????????472??2015-07-15?15:12??TxtReadDll\Dll.h
?????文件????????1637??2015-07-15?14:18??TxtReadDll\ReadMe.txt
?????目錄???????????0??2015-07-15?15:21??TxtReadDll\Release\
?????文件?????????297??2015-07-15?14:18??TxtReadDll\StdAfx.cpp
?????文件?????????802??2015-07-15?14:18??TxtReadDll\StdAfx.h
?????目錄???????????0??2015-07-15?15:18??TxtReadDll\TestDll\
?????目錄???????????0??2015-07-15?15:22??TxtReadDll\TestDll\Debug\
?????文件????????3597??2015-07-15?14:44??TxtReadDll\TestDll\ReadMe.txt
?????目錄???????????0??2015-07-15?15:22??TxtReadDll\TestDll\Release\
?????目錄???????????0??2015-07-15?14:44??TxtReadDll\TestDll\res\
?????文件????????1078??2015-07-15?14:44??TxtReadDll\TestDll\res\TestDll.ico
?????文件?????????399??2015-07-15?14:44??TxtReadDll\TestDll\res\TestDll.rc2
?????文件?????????823??2015-07-15?14:49??TxtReadDll\TestDll\resource.h
?????文件?????????209??2015-07-15?14:44??TxtReadDll\TestDll\StdAfx.cpp
?????文件?????????999??2015-07-15?14:44??TxtReadDll\TestDll\StdAfx.h
?????文件?????????774??2015-07-15?15:11??TxtReadDll\TestDll\test.txt
?????文件???????35756??2015-07-15?15:18??TxtReadDll\TestDll\TestDll.aps
?????文件????????1234??2015-07-15?15:19??TxtReadDll\TestDll\TestDll.clw
?????文件????????2044??2015-07-15?14:44??TxtReadDll\TestDll\TestDll.cpp
?????文件????????4177??2015-07-15?14:44??TxtReadDll\TestDll\TestDll.dsp
?????文件????????1335??2015-07-15?14:44??TxtReadDll\TestDll\TestDll.h
?????文件?????????699??2015-07-15?15:18??TxtReadDll\TestDll\TestDll.plg
?????文件????????5477??2015-07-15?15:18??TxtReadDll\TestDll\TestDll.rc
?????文件????????5720??2015-07-15?15:16??TxtReadDll\TestDll\TestDllDlg.cpp
?????文件????????1472??2015-07-15?14:58??TxtReadDll\TestDll\TestDllDlg.h
?????文件?????????269??2015-07-15?14:18??TxtReadDll\TxtReadDll.cpp
?????文件????????4479??2015-07-15?15:21??TxtReadDll\TxtReadDll.dsp
?????文件?????????740??2015-07-15?14:44??TxtReadDll\TxtReadDll.dsw
............此處省略3個文件信息
評論
共有 條評論