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.
36 lines
980 B
36 lines
980 B
/***************************** MODULE HEADER *******************************
|
|
* glyphmod.c
|
|
* The DrvGetGlyphMode function.
|
|
*
|
|
*
|
|
* Copyright (C) 1992 Microsoft Corporation.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include <stddef.h>
|
|
#include <windows.h>
|
|
#include <winddi.h>
|
|
#include <libproto.h>
|
|
|
|
|
|
/******************************** Function Header ***************************
|
|
* DrvGetGlyphMode
|
|
* Tells engine how we want to handle various aspects of glyph
|
|
* information.
|
|
*
|
|
* RETURNS
|
|
* Information about glyph handling
|
|
*
|
|
* HISTORY:
|
|
* 11:20 on Mon 18 May 1992 -by- Lindsay Harris [lindsayh]
|
|
* First incarnation, in anticipation of engine implementation.
|
|
*
|
|
****************************************************************************/
|
|
|
|
ULONG
|
|
DrvGetGlyphMode( dhpdev, pfo )
|
|
DHPDEV dhpdev; /* Our PDEV in disguise */
|
|
FONTOBJ *pfo; /* The font in question? */
|
|
{
|
|
return FO_GLYPHBITS;
|
|
}
|