en:ibm:prcp:vio:endpopup

Differences

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

Link to this comparison view

en:ibm:prcp:vio:endpopup [2016/02/04 08:05] – created valeriusen:ibm:prcp:vio:endpopup [2016/09/14 10:49] (current) valerius
Line 1: Line 1:
 ==== VioEndPopup ==== ==== VioEndPopup ====
  
-**Bindings**: C, MASM +**Bindings**: [[endpopup#bindings|C]][[endpopup#MASM bindings|MASM]] 
  
 This call is issued by the application when it no longer requires the temporary screen obtained through a previous [[en:ibm:prcp:vio:popup|VioPopUp]] call.  This call is issued by the application when it no longer requires the temporary screen obtained through a previous [[en:ibm:prcp:vio:popup|VioPopUp]] call. 
Line 25: Line 25:
  
 An error is returned if issued with a non-zero handle.  An error is returned if issued with a non-zero handle. 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_VIO
 +
 +USHORT  rc = VioEndPopUp(VioHandle);
 +
 +HVIO             VioHandle;     /* Vio device handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  VioEndPopUp:FAR
 +INCL_VIO            EQU 1
 +
 +PUSH   WORD    VioHandle     ;Vio device handle
 +CALL   VioEndPopUp
 +
 +Returns WORD
 +
 +</code>