⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cneterror.cpp

📁 <B>DirectX9.0 3D游戏编程</B>
💻 CPP
字号:
/*******************************************************************
 *         Advanced 3D Game Programming using DirectX 9.0
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * copyright (c) 2003 by Peter A Walsh and Adrian Perez
 * See license.txt for modification and distribution information
 ******************************************************************/
// cNetError.cpp: implementation of the cNetError class.
//
//////////////////////////////////////////////////////////////////////

#include "cNetError.h"
#include <string.h>
#define WINDOWS_LEAN_AND_MEAN
#include <windows.h>  // OutputDebugString()

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

cNetError::cNetError()
{
  d_text[ 0 ] = NULL;
}


cNetError::~cNetError()
{
}


cNetError::cNetError( const char *pText )
{
  if( pText == NULL )
    strcpy( d_text, "Unspecified." );
  else
    strcpy( d_text, pText );

  OutputDebugString( "Network Error: " );
  OutputDebugString( d_text );
  OutputDebugString( "\n" );
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -