Skip to content

TARGET_POINT

Structure Definition

1
2
3
4
5
6
7
typedef struct _target_point
{
    int m_RulePoint_x1; 
    int m_RulePoint_y1; 
    int m_RulePoint_x2; 
    int m_RulePoint_y2; 
} TARGET_POINT;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct TARGET_POINT
{
    public Int32 m_RulePoint_x1;
    public Int32 m_RulePoint_y1;
    public Int32 m_RulePoint_x2;
    public Int32 m_RulePoint_y2;
}

Function Description

Target box coordinates.

Member Description

Member Type Remark
m_RulePoint_x1 int The horizontal coordinate of the upper left corner of the target box.
m_RulePoint_y1 int The vertical coordinate of the upper left corner of the target box.
m_RulePoint_x2 int The horizontal coordinate of the lower right corner of the target box.
m_RulePoint_y2 int The vertical coordinate of the lower right corner of the target box.
Error Code