1.1.16.6 WDRV_WINC_FILE_DELETE_CALLBACK Typedef
C
typedef void (*WDRV_WINC_FILE_DELETE_CALLBACK)
(
DRV_HANDLE handle,
uintptr_t userCtx,
WDRV_WINC_FILE_TYPE type,
WDRV_WINC_FILE_STATUS_TYPE status
);Description
Definition of file delete callback, used to indicate the status of a file delete operation.
Parameters
| Parameters | Description |
|---|---|
| handle | Client handle obtained by a call to WDRV_WINC_Open. |
| userCtx | User context supplied to WDRV_WINC_FileFind. |
| type | File type found. |
| status | Status of operation. |
Returns
None.
Remarks
status | Description |
|---|---|
| WDRV_WINC_FILE_STATUS_OK | Indicates the file delete operation succeeded. |
| WDRV_WINC_FILE_STATUS_ERROR | Indicates the file delete operation failed. |
