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.
80 lines
1.0 KiB
80 lines
1.0 KiB
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
prntfwnd.h
|
|
|
|
Abstract:
|
|
|
|
This is the include file for PrintfWindows
|
|
|
|
Author:
|
|
|
|
Dave Hastings (daveh) 29-Oct-1992
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _PRNTFWND_H_
|
|
#define _PRNTFWND_H_
|
|
//
|
|
// Function Prototypes
|
|
//
|
|
|
|
BOOL
|
|
InitPrintfWindow(
|
|
HANDLE Instance
|
|
);
|
|
|
|
HANDLE
|
|
CreatePrintfWindow(
|
|
PUCHAR WindowTitle,
|
|
ULONG WindowStyle,
|
|
LONG x,
|
|
LONG y,
|
|
LONG Width,
|
|
LONG Height,
|
|
HWND Owner,
|
|
HANDLE Instance,
|
|
USHORT NumberOfLines
|
|
);
|
|
|
|
BOOL
|
|
PrintToPrintfWindow(
|
|
HANDLE Window,
|
|
PUCHAR String
|
|
);
|
|
|
|
USHORT
|
|
GetLineHeightPrintfWindow(
|
|
HANDLE Window
|
|
);
|
|
|
|
BOOL
|
|
SetDisplayAreaPrintfWindow(
|
|
HANDLE Window,
|
|
USHORT FirstLine,
|
|
USHORT NumberOfLines
|
|
);
|
|
|
|
BOOL
|
|
GetDisplayAreaPrintfWindow(
|
|
HANDLE Window,
|
|
PUSHORT FirstLine,
|
|
PUSHORT NumberOfLines
|
|
);
|
|
|
|
BOOL
|
|
SetBufferSizePrintfWindow(
|
|
HANDLE Window,
|
|
USHORT NumberOfLines
|
|
);
|
|
|
|
USHORT
|
|
GetBufferSizePrintfWindow(
|
|
HANDLE Window
|
|
);
|
|
#endif
|