52 lines
2.0 KiB
Plaintext
52 lines
2.0 KiB
Plaintext
compile insert msWin_DrawText_Equates
|
|
/*
|
|
** Copyright (C) 2013 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author Mr C
|
|
Date 02 March 2015
|
|
Purpose Equates for use with the Windows API DrawText() function
|
|
|
|
Comments
|
|
========
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MSWIN_DRAWTEXT_EQUATES_
|
|
#define _MSWIN_DRAWTEXT_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ DT_TOP$ to 0x00000000
|
|
equ DT_LEFT$ to 0x00000000
|
|
equ DT_CENTER$ to 0x00000001
|
|
equ DT_RIGHT$ to 0x00000002
|
|
equ DT_VCENTER$ to 0x00000004
|
|
equ DT_BOTTOM$ to 0x00000008
|
|
equ DT_WORDBREAK$ to 0x00000010
|
|
equ DT_SINGLELINE$ to 0x00000020
|
|
equ DT_EXPANDTABS$ to 0x00000040
|
|
equ DT_TABSTOP$ to 0x00000080
|
|
equ DT_NOCLIP$ to 0x00000100
|
|
equ DT_EXTERNALLEADING$ to 0x00000200
|
|
equ DT_CALCRECT$ to 0x00000400
|
|
equ DT_NOPREFIX$ to 0x00000800
|
|
equ DT_INTERNAL$ to 0x00001000
|
|
equ DT_EDITCONTROL$ to 0x00002000
|
|
equ DT_PATH_ELLIPSIS$ to 0x00004000
|
|
equ DT_END_ELLIPSIS$ to 0x00008000
|
|
equ DT_MODIFYSTRING$ to 0x00010000
|
|
equ DT_RTLREADING$ to 0x00020000
|
|
equ DT_WORD_ELLIPSIS$ to 0x00040000
|
|
equ DT_HIDEPREFIX$ to 0x00100000
|
|
equ DT_PREFIXONLY$ to 0x00200000
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|