wpMoveJobObject
Appearance
This method is specific to Version 4, or higher, of the OS/2 operating system.
This instance method moves a print job to a different printer.
Syntax
_wpMoveJobObject(somSelf, DestPrinter, ulReserved)
Parameters
- somSelf (WPJob *) - input
- Pointer to the object on which the method is being invoked.
- Points to an object of class WPJob.
- DestPrinter (WPPrinter *) - input
- Destination printer.
- ulReserved (ULONG) - input
- Reserved. Set to 0.
Returns
- rc (BOOL) - returns
- Success indicator
- TRUE Successful completion.
- FALSE Error occurred.
How to Override
This method is not covered in the provided text.
Usage
This method is not covered in the provided text.
Remarks
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. */
WPPrinter *DestPrinter; /* Destination printer. */
ULONG ulReserved; /* Reserved. Set to 0. */
BOOL rc; /* Success indicator */
rc = _wpMoveJobObject(somSelf, DestPrinter,
ulReserved);