Dilwyn Jones writes: > LET pe = PTR_ENV(#channel) : REMark 1=PE present, 0 = no PE > LET wm = WIN_MAN(#channel) : remark 1=Window Manager present, 0=no > window manager
Perhaps WIN_MAN is not such a good choice as WIN_* keywords are used with the WIN utilities in Smsq (WIN_USE, WIN_START, etc) How about PTR_WMAN or WM_PRESENT, or simply WM_VER$. You could do the same for PTR_VER$ and skip the PTR_ENV by saying LET pe = PTR_VER$ <> "" : REMark 1=PE present, 0 = no PE (using the default channel) Thatd be one less keyword to learn. > LET v$ = PTR_VER$(#channel): remark pointer version > LET present = GD2(#channel): REM 1=GD2 present, 0=no GD2 > > The extensions were written on paper last night (watching the new > CSI:Miami series on Ch 5...great programme!) so allow a few months to > debug before appearing ;-) Good luck with them! Per
