48 lines
1.7 KiB
C
Executable File
48 lines
1.7 KiB
C
Executable File
#ifndef h_print
|
|
#define h_print
|
|
/******************************************************************************
|
|
*
|
|
* Include file for all uniVerse printer functions
|
|
*
|
|
* Module %M% Version %I% Date %H%
|
|
*
|
|
* (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved
|
|
* This is unpublished proprietary source code of Ardent Software Inc.
|
|
* The copyright notice above does not evidence any actual or intented
|
|
* publication of such source code.
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
* Maintenence log - insert most recent change descriptions at top
|
|
*
|
|
* Date.... GTAR# WHO Description.........................................
|
|
* 10/14/98 23801 SAP Change copyrights.
|
|
* 07/26/95 16947 JC Swapped PHpageInfo and PHcrlf for NLS functionality.
|
|
* 05/08/93 12305 JC Added PHpageInfo, PHbreakInit and PHgap for additional
|
|
* functionality to the HEADING keyword. VMDOC 1009
|
|
* 05/13/91 7201 JWT SP.TAPE not using correct print channel
|
|
* 03/24/89 5884 JWT R+R patches
|
|
* 07/25/88 - - Maintenence log purged at 5.2.1, see release 5.1.10.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#include "global.h"
|
|
#include "MFILE.h"
|
|
|
|
#define PHcenter (uchar) CHR_377
|
|
#define PHdate (uchar) CHR_376
|
|
#define PHpageInfo (uchar) CHR_375
|
|
#define PHpage (uchar) CHR_374
|
|
#define PHtime (uchar) CHR_373
|
|
#define PHbreak (uchar) CHR_372
|
|
#define PHfile (uchar) CHR_371
|
|
#define PHitem (uchar) CHR_370
|
|
#define PHcrlf (uchar) CHR_367
|
|
#define PHgap (uchar) CHR_366
|
|
#define PHbreakInit (uchar) CHR_365
|
|
#define PHend PHbreakInit
|
|
#define Pchannels 258
|
|
#define Pxtra (Pchannels - 1) /* reserved print channel for SP.TAPE */
|
|
|
|
#endif /* end of print.h */
|