Browse Subversion Repository
Annotation of /branches/ttcomtester/teraterm/teraterm/teraprnfile.h
Parent Directory
| Revision Log
| 1 |
maya |
3227 |
/* Tera Term |
| 2 |
|
|
Copyright(C) 1994-1998 T. Teranishi |
| 3 |
|
|
All rights reserved. */ |
| 4 |
|
|
|
| 5 |
|
|
/* TERATERM.EXE, Printing routines */ |
| 6 |
|
|
|
| 7 |
|
|
#ifdef __cplusplus |
| 8 |
|
|
extern "C" { |
| 9 |
|
|
#endif |
| 10 |
|
|
|
| 11 |
|
|
/* prototypes */ |
| 12 |
|
|
HDC PrnBox(HWND HWin, PBOOL Sel); |
| 13 |
|
|
BOOL PrnStart(LPSTR DocumentName); |
| 14 |
|
|
void PrnStop(); |
| 15 |
|
|
|
| 16 |
|
|
#define IdPrnCancel 0 |
| 17 |
|
|
#define IdPrnScreen 1 |
| 18 |
|
|
#define IdPrnSelectedText 2 |
| 19 |
|
|
#define IdPrnScrollRegion 4 |
| 20 |
|
|
#define IdPrnFile 8 |
| 21 |
|
|
|
| 22 |
|
|
int VTPrintInit(int PrnFlag); |
| 23 |
|
|
void PrnSetAttr(TCharAttr Attr); |
| 24 |
|
|
void PrnOutText(PCHAR Buff, int Count); |
| 25 |
|
|
void PrnNewLine(); |
| 26 |
|
|
void VTPrintEnd(); |
| 27 |
|
|
|
| 28 |
|
|
void PrnFileDirectProc(); |
| 29 |
|
|
void PrnFileStart(); |
| 30 |
|
|
void OpenPrnFile(); |
| 31 |
|
|
void ClosePrnFile(); |
| 32 |
|
|
void WriteToPrnFile(BYTE b, BOOL Write); |
| 33 |
|
|
|
| 34 |
|
|
#ifdef __cplusplus |
| 35 |
|
|
} |
| 36 |
|
|
#endif |
| 37 |
|
|
|
|