本文整理汇总了Java中com.sun.jna.Structure.ALIGN_NONE属性的典型用法代码示例。如果您正苦于以下问题:Java Structure.ALIGN_NONE属性的具体用法?Java Structure.ALIGN_NONE怎么用?Java Structure.ALIGN_NONE使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.sun.jna.Structure
的用法示例。
在下文中一共展示了Structure.ALIGN_NONE属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: UserGroupInfoSouth
public UserGroupInfoSouth()
{
super(Structure.ALIGN_NONE);
}
示例2: OSDNameSouth
public OSDNameSouth()
{
super(Structure.ALIGN_NONE);
}
示例3: IndexRange
public IndexRange()
{
super(Structure.ALIGN_NONE);
}
示例4: AlarmCommissionSouth
public AlarmCommissionSouth(Pointer p)
{
super(p, Structure.ALIGN_NONE);
}
示例5: DeviceBasicInfoSouth
public DeviceBasicInfoSouth()
{
super(Structure.ALIGN_NONE);
}
示例6: QueryUnifiedFormatSouth
public QueryUnifiedFormatSouth()
{
super(Structure.ALIGN_NONE);
}
示例7: AudioBriefInfoSouth
public AudioBriefInfoSouth()
{
super(Structure.ALIGN_NONE);
}
示例8: ResultListSouth
public ResultListSouth(Pointer p)
{
super(p, Structure.ALIGN_NONE);
}
示例9: RoleInfoListSouth
public RoleInfoListSouth(int size)
{
super(Structure.ALIGN_NONE);
this.roleInfos = new RoleInfoSouth[size];
}
示例10: DeviceOperResultSouth
public DeviceOperResultSouth()
{
super(Structure.ALIGN_NONE);
}
示例11: AlarmReportSouth
public AlarmReportSouth()
{
super(Structure.ALIGN_NONE);
}
示例12: RealplayParamSouth
public RealplayParamSouth()
{
super(Structure.ALIGN_NONE);
}
示例13: PTZPresetInfoListSouth
public PTZPresetInfoListSouth(int size)
{
super(Structure.ALIGN_NONE);
ptzPresetInfoSouths = new PTZPresetInfoSouth[size];
}
示例14: WideDynamicSouth
public WideDynamicSouth()
{
super(Structure.ALIGN_NONE);
}
示例15: UserInfoListSouth
public UserInfoListSouth(int size)
{
super(Structure.ALIGN_NONE);
this.userInfos = new UserInfoSouth[size];
}