DD_POSITION¶ 结构体定义¶ C++C# 1 2 3 4 5typedef struct _dd_position_ { unsigned short x; unsigned short y; } DD_POSITION; 1 2 3 4 5 6[StructLayout(LayoutKind.Sequential, Pack = 4)] public struct DD_POSITION { public UInt16 x; public UInt16 y; } 功能描述¶ 位置信息结构体。 成员说明¶ 成员 类型 备注 x unsigned short 横坐标。 y unsigned short 纵坐标。