rr_handler_function typedef

Define pointer to function type for handling ReadRange request. This function will take the following parameters:

    1. A pointer to a buffer of at least MAX_APDU bytes to build the response in.
    1. A pointer to a BACNET_READ_RANGE_DATA structure with all the request information in it. The function is responsible for applying the request to the property in question and returning the response.

Implementation

typedef rr_handler_function =
    ffi.Pointer<ffi.NativeFunction<rr_handler_functionFunction>>;