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.
43 lines
651 B
43 lines
651 B
/*++
|
|
|
|
Copyright (c) 1995 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
dsc.h
|
|
|
|
Abstract:
|
|
|
|
Header file for DSC functions
|
|
|
|
[Environment:]
|
|
|
|
Win32 subsystem, PostScript driver
|
|
|
|
Revision History:
|
|
|
|
09/26/95 -davidx-
|
|
Created it.
|
|
|
|
dd-mm-yy -author-
|
|
description
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _DSC_H_
|
|
#define _DSC_H_
|
|
|
|
VOID DscOutputFontComments(PDEVDATA, BOOL);
|
|
VOID DscIncludeFont(PDEVDATA, PSTR);
|
|
VOID DscBeginFont(PDEVDATA, PSTR);
|
|
VOID DscEndFont(PDEVDATA);
|
|
VOID DscBeginFeature(PDEVDATA, PSTR);
|
|
VOID DscEndFeature(PDEVDATA);
|
|
VOID DscLanguageLevel(PDEVDATA, DWORD);
|
|
|
|
VOID AddSuppliedGdiFont(PDEVDATA, PSTR);
|
|
VOID ClearSuppliedGdiFonts(PDEVDATA);
|
|
|
|
#endif //!_DSC_H_
|
|
|