资源简介
用vc6.0编写的中国象棋.可以编译运行...界面也很不错
代码片段和文件信息
// blocksock.cpp (CBlockingSocketException CBlockingSocket CHttpBlockingSocket)
#include
#include “blocksocket.h“
// Class CBlockingSocketException
IMPLEMENT_DYNAMIC(CBlockingSocketException CException)
CBlockingSocketException::CBlockingSocketException(char* pchMessage)
{
m_strMessage = pchMessage;
m_nError = WSAGetLastError();
}
BOOL CBlockingSocketException::GetErrorMessage(LPTSTR lpstrError UINT nMaxError
PUINT pnHelpContext /*= NULL*/)
{
char text[200];
if(m_nError == 0) {
wsprintf(text “%s error“ (const char*) m_strMessage);
}
else {
wsprintf(text “%s error #%d“ (const char*) m_strMessage m_nError);
}
strncpy(lpstrError text nMaxError - 1);
return TRUE;
}
// Class CBlockingSocket
IMPLEMENT_DYNAMIC(CBlockingSocket
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9135 2000-07-07 13:08 chess\blocksocket.cpp
文件 3715 2000-07-07 13:17 chess\blocksocket.h
文件 45796 2007-04-24 03:28 chess\chess.aps
文件 3317 2007-04-24 03:29 chess\chess.clw
文件 4287 2000-07-10 08:38 chess\chess.cpp
文件 4288 2000-08-16 14:47 chess\chess.dsp
文件 533 2000-07-05 09:13 chess\chess.dsw
文件 1345 2000-07-05 09:13 chess\chess.h
文件 74752 2007-04-24 03:57 chess\chess.ncb
文件 53760 2007-04-24 03:57 chess\chess.opt
文件 2521 2000-08-16 14:47 chess\chess.plg
文件 13407 2000-07-12 15:28 chess\chess.rc
文件 8254 2000-07-11 16:02 chess\ChessArray.cpp
文件 1937 2000-07-11 15:46 chess\ChessArray.h
文件 1922 2000-07-06 09:52 chess\chessDoc.cpp
文件 1517 2000-07-06 09:52 chess\chessDoc.h
文件 18726 2000-07-12 13:01 chess\chessView.cpp
文件 3222 2000-08-16 14:44 chess\chessView.h
文件 1546 2000-07-10 11:46 chess\client.cpp
文件 698 2000-07-12 12:48 chess\globle.h
文件 1333 2000-07-14 16:22 chess\IpAddress.cpp
文件 1243 2000-07-11 13:27 chess\IpAddress.h
文件 5535 2000-07-12 17:48 chess\MainFrm.cpp
文件 2237 2000-07-12 15:37 chess\MainFrm.h
文件 59 2000-08-16 14:41 chess\ReadMe.txt
文件 1078 2000-07-05 09:13 chess\res\chess.ico
文件 397 2000-07-05 09:13 chess\res\chess.rc2
文件 1078 2000-07-05 09:13 chess\res\chessDoc.ico
文件 15872 2000-07-12 14:48 chess\res\Dillo.avi
文件 1078 2000-07-05 09:13 chess\res\Toolbar.bmp
............此处省略13个文件信息
- 上一篇:dev c++图形库 devcFiles
- 下一篇:Apriori数据挖掘算法c++
评论
共有 条评论