GpiQueryYInversion: Difference between revisions
Appearance
Created page with "This API will return the Y-Inversion value set for the HPS previously using the GpiEnableYInversion function. ==Syntax== LONG APIENTRY GpiQueryYInversion(HPS hps); ==Re..." |
mNo edit summary |
||
Line 5: | Line 5: | ||
==Remarks== | ==Remarks== | ||
It is | It is believed it was introduced with the Open32 API (previously called DAPIE or DAX). Its purpose is to ease the porting of Windows applications to OS/2. | ||
This API will return the Y-Inversion value set for the HPS previously using the [[GpiEnableYInversion]] function. | This API will return the Y-Inversion value set for the HPS previously using the [[GpiEnableYInversion]] function. | ||
Line 11: | Line 11: | ||
This function is exported by PMGPI.DLL as ordinal 726. | This function is exported by PMGPI.DLL as ordinal 726. | ||
You can tell the linker to import it, by adding something like this to your *.def file: | You can tell the linker to import it, by adding something like this to your *.def file: | ||
IMPORTS | IMPORTS | ||
GpiQueryYInversion = PMGPI.726 | GpiQueryYInversion = PMGPI.726 | ||
[[Category:Gpi]] | [[Category:Gpi]] |
Latest revision as of 05:41, 20 March 2018
This API will return the Y-Inversion value set for the HPS previously using the GpiEnableYInversion function.
Syntax
LONG APIENTRY GpiQueryYInversion(HPS hps);
Remarks
It is believed it was introduced with the Open32 API (previously called DAPIE or DAX). Its purpose is to ease the porting of Windows applications to OS/2.
This API will return the Y-Inversion value set for the HPS previously using the GpiEnableYInversion function.
This function is exported by PMGPI.DLL as ordinal 726. You can tell the linker to import it, by adding something like this to your *.def file:
IMPORTS GpiQueryYInversion = PMGPI.726