• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

PacketOutputWindowLogger.cpp

Go to the documentation of this file.
00001 #include "NativeFeatureIncludes.h"
00002 #if _RAKNET_SUPPORT_PacketLogger==1
00003 
00004 #include "PacketOutputWindowLogger.h"
00005 #include "RakString.h"
00006 #if defined(_WIN32) && !defined(__X360__) && !defined(_XBOX)
00007 #include "WindowsIncludes.h"
00008 #endif
00009 
00010 PacketOutputWindowLogger::PacketOutputWindowLogger()
00011 {
00012 }
00013 PacketOutputWindowLogger::~PacketOutputWindowLogger()
00014 {
00015 }
00016 void PacketOutputWindowLogger::WriteLog(const char *str)
00017 {
00018 #if defined(_WIN32) && !defined(__X360__) && !defined(_XBOX)
00019         RakNet::RakString str2 = str;
00020         str2+="\n";
00021         OutputDebugStr(str2.C_String());
00022 #endif
00023 }
00024 
00025 #endif // _RAKNET_SUPPORT_*

Generated on Thu Sep 30 2010 01:27:26 for RakNet by  doxygen 1.7.1