00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifdef APERIOS1_3_2
00012 #include "Aperios1.3.2/TCPHandler.h"
00013
00014 #define EXTERNAL_DEBUGGING \
00015 NetReceiver<MessageQueue> theDebugReceiver; \
00016 NetDebugSender theDebugSender; \
00017 TCPHandler theTCPHandler;
00018
00019 #define INIT_EXTERNAL_DEBUGGING \
00020 Process(theDebugReceiver,theDebugSender), \
00021 theDebugReceiver(), \
00022 theDebugSender(), \
00023 theTCPHandler(theDebugSender,theDebugReceiver)
00024
00025 #define INIT_EXTERNAL_DEBUGGING_HANDLER theTCPHandler.listen(0xA1BD);
00026 #endif
00027
00028
00029
00030 #ifdef _WIN32
00031 #define EXTERNAL_DEBUGGING DEBUGGING
00032 #define INIT_EXTERNAL_DEBUGGING INIT_DEBUGGING
00033 #define INIT_EXTERNAL_DEBUGGING_HANDLER
00034 #endif
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054