package com.iailab.netsdk.lib.callback.securityCheck; import com.iailab.netsdk.lib.NetSDKLib; import com.sun.jna.Callback; import com.sun.jna.Pointer; /** * @author : 291189 * @since : Created in 2021/7/5 // æŽ¥å£ CLIENT_AttachPopulationStatistics 回调函数 // pstuPopulationStatisticsInfos 人数å˜åŒ–ä¿¡æ¯ */ public interface fNotifyPopulationStatisticsInfo extends Callback { void invoke( NetSDKLib.LLong lPopulationStatisticsHandle, Pointer pstuPopulationStatisticsInfos, Pointer dwUser); //typedef int (CALLBACK *fNotifyPopulationStatisticsInfo)(LLONG lPopulationStatisticsHandle, NET_POPULATION_STATISTICS_INFO* pstuPopulationStatisticsInfos, LDWORD dwUser); }