StatHandler Typedef

[C]

typedef void (__cdecl* FlowSshC_StatHandler)(
  void* handlerData,
  FlowSshC_FileAttrs const* fileAttrs,
  FlowSshC_SftpErr const* error);

Parameters

  • handlerData: Data passed to the initiating call.
  • fileAttrs: Pointer to a FileAttrs structure.
  • error: Pointer to a SftpErr structure. This pointer is NULL on success.

Remarks

The error pointer is NULL on success. On error, parameters other than the handlerData and the error pointer must not be accessed (they may be NULL or uninitialized).