en:docs:fapi:vioprtsc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:docs:fapi:vioprtsc [2021/09/05 06:07] – created prokusheven:docs:fapi:vioprtsc [2021/09/28 01:30] (current) prokushev
Line 1: Line 1:
 +{{page>en:templates:fapiint}}
 +
 +====== VioPrtSc ======
 +
 This call is issued by the Session Manager when the operator presses ''PrtSc''. This call is issued by the Session Manager when the operator presses ''PrtSc''.
  
-==Syntax== +===== Syntax ===== 
- VioPrtSc (VioHandle)+<code c> 
 +VioPrtSc (VioHandle) 
 +</code>
  
-==Parameters== +===== Parameters =====
-;VioHandle (HVIO) - input: Reserved word of 0s.+
  
-==Return Code== +  VioHandle ([[HVIO]]) - input: Reserved word of 0s. 
-;rc (USHORT) - return:Return code descriptions are: + 
-*0 NO_ERROR +===== Return Code ===== 
-*355 ERROR_VIO_MODE + 
-*402 ERROR_VIO_SMG_ONLY +rc ([[USHORT]]) - return 
-*436 ERROR_VIO_INVALID_HANDLE + 
-*465 ERROR_VIO_DETACHED+Return code descriptions are: 
 + 
 +  *0 NO_ERROR 
 +  *355 ERROR_VIO_MODE 
 +  *402 ERROR_VIO_SMG_ONLY 
 +  *436 ERROR_VIO_INVALID_HANDLE 
 +  *465 ERROR_VIO_DETACHED 
 + 
 +===== Remarks =====
  
-==Remarks== 
 VioPrtSc supports text modes 0 through 3, and 7. An Alternate Video Subsystem may want to register a replacement for VioPrtSc. An advanced video subsystem could set a graphics mode while the mode known to the base video subsystem PrtSc routine is text. Then, if the operator presses PrtSc, the printer output is unpredictable. VioPrtSc is reserved for use by the session manager. Application programs may not issue VioPrtSc. VioPrtSc supports text modes 0 through 3, and 7. An Alternate Video Subsystem may want to register a replacement for VioPrtSc. An advanced video subsystem could set a graphics mode while the mode known to the base video subsystem PrtSc routine is text. Then, if the operator presses PrtSc, the printer output is unpredictable. VioPrtSc is reserved for use by the session manager. Application programs may not issue VioPrtSc.
  
 Three beeps are generated if a hard error is detected while writing to the printer. Three beeps are generated if a hard error is detected while writing to the printer.
  
-==Bindings== +===== Bindings ===== 
-===C=== +==== C ===
-<PRE>+ 
 +<code c>
 #define INCL_VIO #define INCL_VIO
  
Line 29: Line 42:
  
 USHORT  rc;            /* return code */ USHORT  rc;            /* return code */
-</PRE>+</code>
  
-===MASM=== +====MASM==== 
-<PRE>+<code asm>
 EXTRN  VioPrtSc:FAR EXTRN  VioPrtSc:FAR
 INCL_VIO            EQU 1 INCL_VIO            EQU 1
Line 40: Line 53:
  
 Returns WORD Returns WORD
-</PRE>+</code> 
 + 
 +Text based on [[http://www.edm2.com/index.php/VioPrtSc]]
  
-[[http://www.edm2.com/index.php/VioPrtSc]]+{{page>en:templates:fapi}}