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.

29 lines
810 B

  1. #ifndef DISPI_DEFINED
  2. #define DISPI_DEFINED
  3. #include "lsdefs.h"
  4. #include "pdispi.h"
  5. #include "plsrun.h"
  6. #include "plschp.h"
  7. #include "heights.h"
  8. #include "lstflow.h"
  9. typedef struct dispin
  10. {
  11. POINT ptPen; /* starting pen position (x,y) */
  12. PCLSCHP plschp; /* CHP for this display object */
  13. PLSRUN plsrun; /* client pointer to run */
  14. UINT kDispMode; /* display mode, opaque, etc */
  15. LSTFLOW lstflow; /* text direction and orientation */
  16. RECT* prcClip; /* clip rectangle (x,y) */
  17. BOOL fDrawUnderline; /* Draw underline while displaying */
  18. BOOL fDrawStrikethrough; /* Draw strikethrough while Displaying */
  19. HEIGHTS heightsPres;
  20. long dup;
  21. long dupLimUnderline; /* less than dup if trailing spaces */
  22. } DISPIN;
  23. #endif /* !DISPI_DEFINED */