Tizen Native API
|
Public Attributes | |
int | iNumDetected |
TCSDetected * | pDList |
void(* | pfFreeResult )(struct TCSScanResult_struct *pResult) |
Detected malware information is returned to the caller in the TCSScanResult structure provided by the caller. The TCSScanResult structure contains a pointer to a structure that contains scan result information and a pointer to a function used to remove the scan result resource. The memory used to hold the scan result is allocated by the scan functions and freed by calling the function pointed by the pfFreeResult pointer. The detected malware information includes the malware information which had been reported via the callback (pfCallback) function during scanning.
int ScanAppData( ... ) { TCSScanResult scanResult; . . if (TCSScanData(hScanner, &scanParam, &scanResult) == 0) { . . scanResult.pfFreeResult( &scanResult ); } . . }
Number of malware found.
Detected malware list.
void(* TCSScanResult_struct::pfFreeResult)(struct TCSScanResult_struct *pResult) |
Function pointer used to free reported scan result.
This is a synchronous API.
[in] | pResult | Pointer to data structure in which detected scan result information is stored. |