Point structure (short integers).

typedef struct _POINTS {
  SHORT     x;  /*  X-coordinate. */
  SHORT     y;  /*  Y-coordinate. */
} POINTS;

typedef   POINTS   * PPOINTS ;


[Back] [Next]