跳转至

DD_POSITION

结构体定义

1
2
3
4
5
typedef 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 纵坐标。
错误码