LineDDAProc

3.1

  void CALLBACK LineDDAProc(xPos, yPos, lpData)    
  int xPos; /* x-coordinate of current position */
  int yPos; /* y-coordinate of current position */
  LPARAM lpData; /* address of application-defined data */

The LineDDAProc function is an application-defined callback function that processes coordinates from the LineDDA function.

Parameters

xPos

Specifies the x-coordinate of the current point.

yPos

Specifies the y-coordinate of the current point.

lpData

Points to the application-defined data.

Return Value

This function does not return a value.

Comments

An application must register this function by passing its address to the LineDDA function.

LineDDAProc is a placeholder for the application-defined function name. The actual name must be exported by including it in an EXPORTS statement in the application's module-definition file.

See Also

LineDDA