From dfa5013f4f8c0aebdf19e6a42e3248ed53b0bf6c Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Sat, 18 Feb 2012 02:54:53 -0500 Subject: [PATCH] MIS STDIO redirection psuedo for OSX/Linux. WIN32 reference changed to WINDOWS setup my M_OPS. Totally failing tonight with commits... --- mystic/mis_client_telnet.pas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mystic/mis_client_telnet.pas b/mystic/mis_client_telnet.pas index 6d25b58..4fe5c34 100644 --- a/mystic/mis_client_telnet.pas +++ b/mystic/mis_client_telnet.pas @@ -42,7 +42,7 @@ Begin Self.ND := ND; End; -{$IFDEF WIN32} +{$IFDEF WINDOWS} Procedure TTelnetServer.Execute; Var Cmd : String; @@ -118,11 +118,11 @@ Begin fpSystem(Cmd); // placeholder for above // redirection of STDIO psuedocode loop here - // NOTE client class already escapes telnet protocol, no need for that. + // NOTE client class already escapes telnet protocol, no need for that! // // while processGoing do begin - // case waitEvent(Input, output or close, wait INFINITY) - // input : push input to Client class + // case waitEvent(Input, output, close, wait INFINITY) + // input : push input to STDIO handle? // output : push output to client class // close : break; // end