WpDeleteJob: Difference between revisions
Appearance
Created page with "{{DISPLAYTITLE:wpDeleteJob}} This instance method is called to delete a job object. ==Syntax== _wpDeleteJob(somSelf) ==Parameters== ;''somSelf'' (WPJob *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPJob. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. :'''TRUE''' Successful completion. :'''FALSE''' Error occurred. ==How to Override== This method is generally not overridden. ==Usage== This..." |
(No difference)
|
Latest revision as of 06:21, 4 November 2025
This instance method is called to delete a job object.
Syntax
_wpDeleteJob(somSelf)
Parameters
- somSelf (WPJob *) - input
- Pointer to the object on which the method is being invoked.
- Points to an object of class WPJob.
Returns
- rc (BOOL) - returns
- Success indicator.
- TRUE Successful completion.
- FALSE Error occurred.
How to Override
This method is generally not overridden.
Usage
This method is not covered in the provided text.
Example Code
#define INCL_WINWORKPLACE #include <os2.h> WPJob *somSelf; /* Pointer to the object on which the method is being invoked. */ BOOL rc; /* Success indicator. */ rc = _wpDeleteJob(somSelf);