Skip to content

NET_SDK_IVE_VSD_TARGET_CAR

Structure Definition

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
typedef struct
{
    unsigned int byColor;     
    unsigned int byYear;      
    unsigned int byType;      
    unsigned int byReserve1;  
    char szBrand[64];         
    char szModel[64];         
    unsigned int dwBrandType; 
    unsigned int dwModelType; 
    char szReserve[120];      
} NET_SDK_IVE_VSD_TARGET_CAR;
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
[StructLayout(LayoutKind.Sequential, Pack = 4, Size = 272)]
public unsafe struct NET_SDK_IVE_VSD_TARGET_CAR
{
    public UInt32 byColor;
    public UInt32 byYear;
    public UInt32 byType;
    public UInt32 byReserve1;
    public fixed byte szBrand[64];
    public fixed byte szModel[64];
    public UInt32 dwBrandType;
    public UInt32 dwModelType;
    public fixed byte szReserve[120];
}

Function Description

Vehicle attributes

Member Description

Member Type Remark
byColor unsigned int Color 0: Unknown 1: Red 2: Orange 3: Yellow 4: Green 5: Blue 6: Cyan 7: Purple 8: Black 9: White 10: Silver 11: Gray 12: Gold 13: Brown.
byYear unsigned int Year 0: Unknown 1: 2008 2: 2009 3: 2010 4: 2011 5: 2012 6: 2013 7: 2014 8: 2015 9: 2016 10: 2017 11: 2018.
byType unsigned int Type 0: Unknown 1: Sedan 2: SUV 3: MPV 4: Sports car 5: Van 6: Bus 7: School bus 8: Public bus 9: Light passenger car 10: Pickup truck 11: Truck 12: Special vehicle.
byReserve1 unsigned int Reserved field.
szBrand char[64] Brand.
szModel char[64] Model.
dwBrandType unsigned int Brand.
dwModelType unsigned int Model.
szReserve char[120] Reserved field.
Error Code