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.
#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);