|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| user-defined
| Header File
| wingdi.h
| Unicode
| No
| Platform Notes
| LINEDDAPROC
|
|
|
LineDDAProc
A LineDDAProc function is an application-defined callback function that processes
coordinates from the LineDDA function. A value of type LINEDDAPROC is a pointer to such a function.
VOID CALLBACK LineDDAProc(
int X,
| // x-coordinate of point being evaluated
| int Y,
| // y-coordinate of point being evaluated
| LPARAM lpData
| // address of application-defined data
| );
|
|
Parameters
X
Specifies the x-coordinate of the current point.
Y
Specifies the y-coordinate of the current point.
lpData
Points to the application-defined data.
Remarks
LineDDAProc is a placeholder for an application-defined function name.
An application registers a LineDDAProc function by passing its address to the LineDDA function.
See Also
LineDDA
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|