1
zhanghua
2024-09-28 d385d4d35e20d7b24bc6a00cac20c5fd5374c2d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.dahua.netsdk.lib.callback.securityCheck;
 
import com.dahua.netsdk.lib.NetSDKLib;
import com.dahua.netsdk.lib.SDKCallback;
import com.sun.jna.Pointer;
 
 
/**
 * @author : 291189
 * @since : Created in 2021/7/5
// 接口 CLIENT_AttachPopulationStatistics 回调函数
// pstuPopulationStatisticsInfos 人数变化信息
 */
public interface fNotifyPopulationStatisticsInfo extends SDKCallback {
 
    void invoke(
            NetSDKLib.LLong lPopulationStatisticsHandle,
            Pointer pstuPopulationStatisticsInfos,
            Pointer dwUser);
    //typedef int (CALLBACK *fNotifyPopulationStatisticsInfo)(LLONG lPopulationStatisticsHandle, NET_POPULATION_STATISTICS_INFO* pstuPopulationStatisticsInfos, LDWORD dwUser);
}