Server API > BS2_VerifyUserSmallEx
[+ 2.6.3] Transfers user information mapped to the card or user ID authentication results to the device.
The only difference between BS2_VerifyUserEx which is using structure BS2UserBlobEx is that the 5th parameter BS2UserPhoto of BS2UserSmallBlob is using pointer for efficient memory use.
#include "BS_API.h" int BS2_VerifyUserSmallEx(void* context, uint32_t deviceId, uint16_t seq, int handleResult, BS2UserSmallBlobEx* userBlob);
context
: ContextdeviceId
: Device IDseq
: Packet sequence numberhandleResult
: Value of matching result(BS_SDK_SUCCESS or BS_SDK_ERROR_XXX)userBlob
: Matched user information
NOTE
Packet sequence number must be equivalent to the value sent from the OnVerifyUser.
If the handleResult is BS_SDK_SUCCESS, the userBlob should not be null.
If successfully done, BS_SDK_SUCCESS
will be returned.
If there is an error, the corresponding error code will be returned.