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.
24 lines
477 B
24 lines
477 B
#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 */
|