Stderr Event

Fired when data come in through stderr.

Syntax

ANSI (Cross Platform)
virtual int FireStderr(PipeExecStderrEventParams *e);
typedef struct {
const char *Text; int lenText;
int EOL; int reserved; } PipeExecStderrEventParams; Unicode (Windows) virtual INT FireStderr(PipeExecStderrEventParams *e);
typedef struct {
LPCSTR Text; INT lenText;
BOOL EOL; INT reserved; } PipeExecStderrEventParams;
- (void)onStderr:(NSData*)text :(BOOL)EOL;
#define EID_PIPEEXEC_STDERR 3

virtual INT IPWORKSIPC_CALL FireStderr(LPSTR &lpText, INT &lenText, BOOL &bEOL);

Remarks

The Stderr event is fired every time the process outputs a line in its standard output. The incoming data is provided through the Text parameter.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks IPC 2020 C++ Edition - Version 20.0 [Build 8155]