Jump to content

VioPrtScToggle: Difference between revisions

From EDM2
Ak120 (talk | contribs)
Ak120 (talk | contribs)
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Description==
This call is called by the Session Manager when the operator presses Ctrl and PrtSc.
This call is called by the Session Manager when the operator presses Ctrl and PrtSc.
==Syntax==
==Syntax==
<PRE>
  VioPrtScToggle (VioHandle)
  VioPrtScToggle


    (VioHandle)
</PRE>
==Parameters==
==Parameters==
; VioHandle (HVIO) - input : Reserved word of 0s.
;VioHandle ([[HVIO]]) - input : Reserved word of 0s.
 
==Return Code==
==Return Code==
rc (USHORT) - return
;rc (USHORT) - return:Return code descriptions are:
 
* 0   NO_ERROR
Return code descriptions are:
* 355 ERROR_VIO_MODE
 
* 402 ERROR_VIO_SMG_ONLY
* 0         NO_ERROR  
* 430 ERROR_VIO_ILLEGAL_DURING_POPUP
* 355       ERROR_VIO_MODE  
* 436 ERROR_VIO_INVALID_HANDLE
* 402       ERROR_VIO_SMG_ONLY  
* 465 ERROR_VIO_DETACHED
* 430       ERROR_VIO_ILLEGAL_DURING_POPUP  
* 436       ERROR_VIO_INVALID_HANDLE  
* 465       ERROR_VIO_DETACHED


==Remarks==
==Remarks==
VioPrtScToggle toggles the Ctrl and PrtSc state of the foreground session. When the Ctrl and PrtSc state is on, all VioWrtTTY calls from that session are echoed to the print device.
VioPrtScToggle toggles the Ctrl and PrtSc state of the foreground session. When the Ctrl and PrtSc state is on, all [[VioWrtTTY]] calls from that session are echoed to the print device.


VioPrtScToggle can only be called by the session manager. If an application issues this call, it receives an error code.
VioPrtScToggle can only be called by the session manager. If an application issues this call, it receives an error code.


Three beeps are generated if a hard error is detected while writing to the printer. When Ctrl and PrtSc is turned off, the operator may have to press the Enter key to cause output spooled while Ctrl and PrtSc was active to be printed. This is because the spool files are closed when the next VioWrtTTY is executed in the session, such as writing the prompt in response to the Enter key.  
Three beeps are generated if a hard error is detected while writing to the printer. When Ctrl and PrtSc is turned off, the operator may have to press the Enter key to cause output spooled while Ctrl and PrtSc was active to be printed. This is because the spool files are closed when the next VioWrtTTY is executed in the session, such as writing the prompt in response to the Enter key.
==Example Code==


===C Binding===
==Bindings==
===C===
<PRE>
<PRE>
#define INCL_VIO
#define INCL_VIO
Line 35: Line 30:
USHORT  rc = VioPrtScToggle(VioHandle);
USHORT  rc = VioPrtScToggle(VioHandle);


HVIO             VioHandle;    /* Vio handle */
HVIO   VioHandle;    /* Vio handle */
USHORT  rc;            /* return code */
</PRE>


USHORT          rc;            /* return code */
===MASM===
</PRE>
=== MASM Binding===
<PRE>
<PRE>
EXTRN  VioPrtScToggle:FAR
EXTRN  VioPrtScToggle:FAR
Line 49: Line 44:
Returns WORD
Returns WORD
</PRE>
</PRE>
==Related Functions==
*


[[Category:The OS/2 API Project]]
[[Category:Vio]]

Latest revision as of 15:50, 3 January 2019

This call is called by the Session Manager when the operator presses Ctrl and PrtSc.

Syntax

VioPrtScToggle (VioHandle)

Parameters

VioHandle (HVIO) - input
Reserved word of 0s.

Return Code

rc (USHORT) - return
Return code descriptions are:
  • 0 NO_ERROR
  • 355 ERROR_VIO_MODE
  • 402 ERROR_VIO_SMG_ONLY
  • 430 ERROR_VIO_ILLEGAL_DURING_POPUP
  • 436 ERROR_VIO_INVALID_HANDLE
  • 465 ERROR_VIO_DETACHED

Remarks

VioPrtScToggle toggles the Ctrl and PrtSc state of the foreground session. When the Ctrl and PrtSc state is on, all VioWrtTTY calls from that session are echoed to the print device.

VioPrtScToggle can only be called by the session manager. If an application issues this call, it receives an error code.

Three beeps are generated if a hard error is detected while writing to the printer. When Ctrl and PrtSc is turned off, the operator may have to press the Enter key to cause output spooled while Ctrl and PrtSc was active to be printed. This is because the spool files are closed when the next VioWrtTTY is executed in the session, such as writing the prompt in response to the Enter key.

Bindings

C

#define INCL_VIO

USHORT  rc = VioPrtScToggle(VioHandle);

HVIO    VioHandle;     /* Vio handle */
USHORT  rc;            /* return code */

MASM

EXTRN  VioPrtScToggle:FAR
INCL_VIO            EQU 1

PUSH   WORD    VioHandle     ;Vio handle
CALL   VioPrtScToggle

Returns WORD