Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:vio:endpopup [2016/02/04 08:05] – created valerius | en:ibm:prcp:vio:endpopup [2016/09/14 10:49] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== VioEndPopup ==== | ==== VioEndPopup ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call is issued by the application when it no longer requires the temporary screen obtained through a previous [[en: | This call is issued by the application when it no longer requires the temporary screen obtained through a previous [[en: | ||
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 | ||
+ | |||
+ | HVIO | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN VioEndPopUp: | ||
+ | INCL_VIO | ||
+ | |||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | |||
+ | </ | ||