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.

40 lines
1.2 KiB

  1. #ifndef LSQSINFO_DEFINED
  2. #define LSQSINFO_DEFINED
  3. #include "lsdefs.h"
  4. #include "heights.h"
  5. #include "lstflow.h"
  6. #include "plsrun.h"
  7. #include "plsqsinf.h"
  8. typedef struct lsqsubinfo
  9. {
  10. LSTFLOW lstflowSubline;
  11. LSCP cpFirstSubline;
  12. LSDCP dcpSubline;
  13. POINTUV pointUvStartSubline; /* In coordinate system of main line/subline */
  14. HEIGHTS heightsPresSubline; /* In direction lstflowSubline */
  15. long dupSubline; /* In direction lstflowSubline */
  16. DWORD idobj;
  17. PLSRUN plsrun;
  18. LSCP cpFirstRun;
  19. LSDCP dcpRun;
  20. POINTUV pointUvStartRun; /* In coordinate system of main line/subline */
  21. HEIGHTS heightsPresRun; /* In direction lstflowSubline */
  22. long dupRun; /* In direction lstflowSubline */
  23. long dvpPosRun; /* in direction of lstflowSubline */
  24. long dupBorderBefore; /* in direction of lstflowSubline */
  25. long dupBorderAfter; /* in direction of lstflowSubline */
  26. POINTUV pointUvStartObj; /* Set by Object, translated to coord system of main line/subline */
  27. HEIGHTS heightsPresObj; /* Set by Object, in direction lstflowSubline */
  28. long dupObj; /* Set by Object, in direction lstflowSubline */
  29. } LSQSUBINFO;
  30. #endif