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.

52 lines
671 B
C

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#ifndef GUIDE_POINT_DATA_STRUCT_H
#define GUIDE_POINT_DATA_STRUCT_H
//无人直升机飞行航线的航点数据结构体
#if defined (_WIN32_WCE) || defined (WIN32)
#pragma pack( push, VMF)
#endif//defined (_WIN32_WCE) || defined (WIN32)
#pragma pack(1)
//导引点数据结构体
struct GuidePointData
{
BYTE guideMode; //导引点类型1为导引飞行1,2为导引飞行2
double guidePtLon; //导引点经度
double guidePtLat; //导引点纬度
};
#if defined (_WIN32_WCE) || defined (WIN32)
#pragma pack( pop,VMF)
#else
#pragma pack()
#endif//defined (_WIN32_WCE) || defined (WIN32)
#endif