潘志宝
5 天以前 4d7e3bb9a93ac0bdba9075e5efa536a165f8aae9
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.callback.securityCheck;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4 import com.sun.jna.Callback;
5 import com.sun.jna.Pointer;
6
7
8 /**
9  * @author : 291189
10  * @since : Created in 2021/7/5
11 // 接口 CLIENT_AttachPopulationStatistics 回调函数
12 // pstuPopulationStatisticsInfos 人数变化信息
13  */
14 public interface fNotifyPopulationStatisticsInfo extends Callback {
15
16     void invoke(
17             NetSDKLib.LLong lPopulationStatisticsHandle,
18             Pointer pstuPopulationStatisticsInfos,
19             Pointer dwUser);
20     //typedef int (CALLBACK *fNotifyPopulationStatisticsInfo)(LLONG lPopulationStatisticsHandle, NET_POPULATION_STATISTICS_INFO* pstuPopulationStatisticsInfos, LDWORD dwUser);
21 }