WindowsXP-SP1/windows/richedit/lsinc/lstxm.h
2020-09-30 16:53:49 +02:00

25 lines
477 B
C

#ifndef LSTXM_DEFINED
#define LSTXM_DEFINED
#include "lsdefs.h"
#include "plstxm.h"
/*igorzv** good explanation according text flow issue is needed here /
/* A few words about the v-vector and the sign bit:
*
* dvDescent is positive downwards.
* v is positive upwards during formatting.
*/
struct lstxm
{
long dvAscent;
long dvDescent;
long dvMultiLineHeight;
BOOL fMonospaced;
};
typedef struct lstxm LSTXM;
#endif /* !LSTXM_DEFINED */