WinStretchPointer draws an icon at the x and y coordinates using the style specified in the fs parameter. This function also stretches the bitmap in size using the cx and cy coordinates.

#include <os2.h>

HPS         hps;    /*  Presentation-space handle. */
SHORT       x;      /*  x coordinate. */
SHORT       y;      /*  y coordinate. */
SHORT       cx;     /*  cx coordinate. */
SHORT       cy;     /*  cy coordinate. */
HPOINTER    hIcon;  /*  Icon handle. */
USHORT      fs;     /*  Style. */
APIRET      rc;     /*  Success indicator. */

rc = WinStretchPointer(hps, x, y, cx, cy,
       hIcon, fs);


[Back: WinStretchPointer]
[Next: WinStretchPointer Parameter - hps]