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.
 
 
 
 
 
 

35 lines
549 B

#ifndef LSEXPINF_DEFINED
#define LSEXPINF_DEFINED
#include "lsdefs.h"
#include "exptype.h"
#define lsexpinfInfinity 0x1FFFFF
/* ------------------------------------------------------------------------ */
struct lsexpinfo /* Expansion info */
{
long duMax;
union
{
struct
{
long duMin;
} AddInkContinuous;
struct
{
DWORD cwidths;
} AddInkDiscrete;
} u;
BYTE prior;
BYTE fCanBeUsedForResidual;
WORD pad;
};
typedef struct lsexpinfo LSEXPINFO;
#endif /* !LSEXPINFO_DEFINED */