RealPathHandler Typedef

[C]

typedef void (__cdecl* FlowSshC_RealPathHandler)(
  void* handlerData,
  wchar_t const* realPath,
  FlowSshC_SftpErr const* error);

Parameters

  • handlerData: Data passed to the initiating call.
  • realPath: Returned absolute path with a leading slash ("/").
  • 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).