mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
580 B
17 lines
580 B
/******************************* MODULE HEADER ******************************
|
|
* jdhandler.h
|
|
* Job Directive Handler Module. Handles different job directives
|
|
* given to us by OEMCommandCallback.
|
|
* Revision History:
|
|
* Created: 9/19/96 -- Joel Rieke
|
|
*
|
|
****************************************************************************/
|
|
#ifndef _jdhandler_h
|
|
#define _jdhandler_h
|
|
BOOL bJDValidatePJLSettings(POEMPDEV pdev);
|
|
VOID JDEndJob(POEMPDEV pdev);
|
|
BOOL bJDStartJob(POEMPDEV pdev, PHP5PDEV pHP5pdev);
|
|
BOOL bJDCopyCheck(POEMPDEV pdev, DWORD copyCntCheck);
|
|
|
|
#endif
|
|
|