Source code of Windows XP (NT5)
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.1 KiB

#ifndef LSQSINFO_DEFINED
#define LSQSINFO_DEFINED
#include "lsdefs.h"
#include "heights.h"
#include "lstflow.h"
#include "plsrun.h"
#include "plsqsinf.h"
typedef struct lsqsubinfo
{
LSTFLOW lstflowSubline;
LSCP cpFirstSubline;
LSDCP dcpSubline;
POINTUV pointUvStartSubline; /* In coordinate system of main line/subline */
HEIGHTS heightsPresSubline; /* In direction lstflowSubline */
long dupSubline; /* In direction lstflowSubline */
DWORD idobj;
PLSRUN plsrun;
LSCP cpFirstRun;
LSDCP dcpRun;
POINTUV pointUvStartRun; /* In coordinate system of main line/subline */
HEIGHTS heightsPresRun; /* In direction lstflowSubline */
long dupRun; /* In direction lstflowSubline */
long dvpPosRun; /* in direction of lstflowSubline */
long dupBorderBefore; /* in direction of lstflowSubline */
long dupBorderAfter; /* in direction of lstflowSubline */
POINTUV pointUvStartObj; /* Set by Object, translated to coord system of main line/subline */
HEIGHTS heightsPresObj; /* Set by Object, in direction lstflowSubline */
long dupObj; /* Set by Object, in direction lstflowSubline */
} LSQSUBINFO;
#endif