Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentparams.h
Go to the documentation of this file.
00001 #pragma once 00002 00003 #include "ttelhndl.h" 00004 00005 typedef struct { 00006 HANDLE hExit; 00007 HANDLE hPause, hUnPause; 00008 volatile int *bNetPaused; 00009 volatile int *bNetFinished; 00010 volatile int *bNetFinish; 00011 } NetParams; 00012 00013 // We could make TelHandler a pointer rather than a reference, but making it 00014 // a reference forces us to initialize it when it is created, thus avoiding 00015 // a possible segfault (Paul Brannan 6/15/98) 00016 class TelThreadParams { 00017 public: 00018 TelThreadParams(TTelnetHandler &RefTelHandler): TelHandler(RefTelHandler) {} 00019 NetParams p; 00020 TTelnetHandler &TelHandler; 00021 }; Generated on Sat May 26 2012 04:16:15 for ReactOS by
1.7.6.1
|