Leaked source code of windows server 2003
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.
 
 
 
 
 
 

30 lines
816 B

#ifndef LSSTINFO_DEFINED
#define LSSTINFO_DEFINED
#include "lsdefs.h"
#include "plsstinf.h"
/*
* all strikethrough offsets are relative to the baseline and positive upwards (filled page direction),
* so normally dvpLowerStrikethroughOffset > 0 and if cNumberOfLines == 2
* dvpLowerStrikethroughOffset < dvpUpperStrikethroughOffset
*/
struct lsstinfo
{
UINT kstbase; /* base kind of strikethrough */
DWORD cNumberOfLines; /* number of lines: possible values 1,2*/
long dvpLowerStrikethroughOffset ; /* if NumberOfLines != 2 only data for
lower line should be filled in */
long dvpLowerStrikethroughSize;
long dvpUpperStrikethroughOffset;
long dvpUpperStrikethroughSize;
};
typedef struct lsstinfo LSSTINFO;
#endif /* !LSSTINFO_DEFINED */