提交 | 用户 | 时间
|
ce910c
|
1 |
package com.netsdk.lib.callback.securityCheck; |
H |
2 |
|
|
3 |
import com.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 |
} |