Jump to content

wpPrintJobNext

From EDM2
Revision as of 03:53, 17 November 2025 by Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpPrintJobNext}} This instance method is called to print a job next. ==Syntax== _wpPrintJobNext(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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This instance method is called to print a job next.

Syntax

_wpPrintJobNext(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 = _wpPrintJobNext(somSelf);