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

2 years ago
#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)
//<2F><><EFBFBD>߱<EFBFBD><DFB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݽṹ<DDBD><E1B9B9>
struct DrawLineDataStruct
{
//<2F><><EFBFBD>߱<EFBFBD><DFB1><EFBFBD>
BYTE lineID;
//<2F><><EFBFBD><EFBFBD><EFBFBD>ĺ<EFBFBD><C4BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
int pointNum;
PtStruct pts[512];
//<2F><><EFBFBD><EFBFBD>ߵĺ<DFB5><C4BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
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