|
Odamex
Setting the Standard in Multiplayer Doom
|
00001 // Emacs style mode select -*- C++ -*- 00002 //----------------------------------------------------------------------------- 00003 // 00004 // $Id: net_print.h 1928 2010-09-17 04:39:55Z hypereye $ 00005 // 00006 // Copyright (C) 2006-2010 by The Odamex Team. 00007 // 00008 // This program is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU General Public License 00010 // as published by the Free Software Foundation; either version 2 00011 // of the License, or (at your option) any later version. 00012 // 00013 // This program is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 // GNU General Public License for more details. 00017 // 00018 // 00019 // DESCRIPTION: 00020 // Wii Remote Debugging Support 00021 // 00022 //----------------------------------------------------------------------------- 00023 #ifndef __net_print_h__ 00024 #define __net_print_h__ 00025 00026 int net_print_init(const char *rhost, unsigned short port); 00027 00028 int net_print_string( const char* file, int line, const char* format, ...); 00029 00030 int net_print_binary( int format, const void* binary, int len); 00031 00032 #define DEFAULT_NET_PRINT_PORT 5194 00033 #define DEFAULT_NET_PRINT_HOST "192.168.0.71" // Address of debug server 00034 00035 #endif