X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=op.h;h=081d10c0e88a053d000d75cba0846b35a914c0c0;hb=97017a809da405a36dfccf88d7bd13d26ca0e932;hp=2cc39d20bb53318e6adef912adcc03e2ceabd2a5;hpb=e4783991709775389a3fc70c841522b0165cd076;p=p5sagit%2Fp5-mst-13.2.git diff --git a/op.h b/op.h index 2cc39d2..081d10c 100644 --- a/op.h +++ b/op.h @@ -197,6 +197,15 @@ Deprecated. Use C instead. /* Private for OP_THREADSV */ #define OPpDONE_SVREF 64 /* Been through newSVREF once */ +/* Private for OP_OPEN and OP_BACKTICK */ +#define OPpOPEN_IN_RAW 16 /* binmode(F,":raw") on input fh */ +#define OPpOPEN_IN_CRLF 32 /* binmode(F,":crlf") on input fh */ +#define OPpOPEN_OUT_RAW 64 /* binmode(F,":raw") on output fh */ +#define OPpOPEN_OUT_CRLF 128 /* binmode(F,":crlf") on output fh */ + +/* Private for OP_EXIT */ +#define OPpEXIT_VMSISH 128 /* exit(0) vs. exit(1) vmsish mode*/ + struct op { BASEOP };