You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.netsdk.lib.callback.securityCheck ;
import com.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);
}