You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
702 B
C++

#ifndef DRAW_LINE_STRUCT_H
#define DRAW_LINE_STRUCT_H
#include "../Include/8BMapDLL_type.h"
using namespace B8MapDLL;
#if defined (_WIN32_WCE) || defined (WIN32)
#pragma pack( push, VMF)
#endif//defined (_WIN32_WCE) || defined (WIN32)
#pragma pack(1)
//航线标绘的数据结构体
struct DrawLineDataStruct
{
//航线编号
BYTE lineID;
//标绘的航点个数
int pointNum;
PtStruct pts[512];
//标绘航线的航点个数
int linePointNum;
PtStruct linePts[512];
};
#if defined (_WIN32_WCE) || defined (WIN32)
#pragma pack( pop,VMF)
#else
#pragma pack()
#endif//defined (_WIN32_WCE) || defined (WIN32)
#endif