|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| gdi32.lib
| Header File
| wingdi.h
| Unicode
| No
| Platform Notes
| Windows 95: int == 16 bits
|
|
|
SetAbortProc
The SetAbortProc function sets the application-defined abort function that allows a print job
to be canceled during spooling. This function replaces the SETABORTPROC printer
escape.
int SetAbortProc(
HDC hdc,
| // handle of device context
| ABORTPROC lpAbortProc
| // address of abort function
| );
|
|
Parameters
hdc
Identifies the device context for the print job.
lpAbortProc
Points to the application-defined abort function. For more information about
the callback function, see the AbortProc callback function.
Return Values
If the function succeeds, the return value is greater than zero.
If the function fails, the return value is SP_ERROR. To get extended error
information, call GetLastError.
See Also
AbortDoc, AbortProc
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
TMS Scripter Studio Pro components for Delphi/C++Builder
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
|