58 lines
2.5 KiB
Plaintext
58 lines
2.5 KiB
Plaintext
compile insert msWin_ChooseFont_Equates
|
|
/*
|
|
** Copyright (C) 2015 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author Mr C
|
|
Date Dec 2015
|
|
Purpose Equates for use with the WINAPI ChooseFont function
|
|
|
|
Comments
|
|
========
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MSWIN_CHOOSEFONT_EQUATES_
|
|
#define _MSWIN_CHOOSEFONT_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ CT_SCREENFONTS$ to 0x00000001
|
|
equ CT_PRINTERFONTS$ to 0x00000002
|
|
equ CT_BOTH$ bitOr( CF_SCREENFONTS$, CF_PRINTERFONTS$ )
|
|
equ CT_SHOWHELP$ to 0x00000004
|
|
equ CT_ENABLEHOOK$ to 0x00000008
|
|
equ CT_ENABLETEMPLATE$ to 0x00000010
|
|
equ CT_ENABLETEMPLATEHANDLE$ to 0x00000020
|
|
equ CT_INITTOLOGFONTSTRUCT$ to 0x00000040
|
|
equ CT_USESTYLE$ to 0x00000080
|
|
equ CT_EFFECTS$ to 0x00000100
|
|
equ CT_APPLY$ to 0x00000200
|
|
equ CT_ANSIONLY$ to 0x00000400
|
|
equ CT_SCRIPTSONLY$ CF_ANSIONLY$
|
|
equ CT_NOVECTORFONTS$ to 0x00000800
|
|
equ CT_NOOEMFONTS$ CF_NOVECTORFONTS$
|
|
equ CT_NOSIMULATIONS$ to 0x00001000
|
|
equ CT_LIMITSIZE$ to 0x00002000
|
|
equ CT_FIXEDPITCHONLY$ to 0x00004000
|
|
equ CT_WYSIWYG$ to 0x00008000
|
|
equ CT_FORCEFONTEXIST$ to 0x00010000
|
|
equ CT_SCALABLEONLY$ to 0x00020000
|
|
equ CT_TTONLY$ to 0x00040000
|
|
equ CT_NOFACESEL$ to 0x00080000
|
|
equ CT_NOSTYLESEL$ to 0x00100000
|
|
equ CT_NOSIZESEL$ to 0x00200000
|
|
equ CT_SELECTSCRIPT$ to 0x00400000
|
|
equ CT_NOSCRIPTSEL$ to 0x00800000
|
|
equ CT_NOVERTFONTS$ to 0x01000000
|
|
equ CT_INACTIVEFONTS$ to 0x02000000
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|