Convert the property list values into int32_t to support the larger property values when an int is 8-bit or 16-bit. (#1145)

This commit is contained in:
Steve Karg
2025-11-16 08:34:45 -06:00
committed by GitHub
parent 3ea710f92f
commit e9dd910b55
180 changed files with 1071 additions and 861 deletions
+79 -79
View File
@@ -25,194 +25,194 @@ extern "C" {
#endif /* __cplusplus */
BACNET_STACK_EXPORT
const char *bactext_confirmed_service_name(unsigned index);
const char *bactext_confirmed_service_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_unconfirmed_service_name(unsigned index);
const char *bactext_unconfirmed_service_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_application_tag_name(unsigned index);
const char *bactext_application_tag_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_application_tag_index(
const char *search_name, unsigned *found_index);
const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_object_type_name(unsigned index);
const char *bactext_object_type_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_object_type_name_capitalized(unsigned index);
const char *bactext_object_type_name_capitalized(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_object_type_index(const char *search_name, unsigned *found_index);
bool bactext_object_type_index(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
bool bactext_object_type_strtol(const char *search_name, unsigned *found_index);
bool bactext_object_type_strtol(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
bool bactext_property_name_proprietary(unsigned index);
bool bactext_property_name_proprietary(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_property_name(unsigned index);
const char *bactext_property_name(uint32_t index);
BACNET_STACK_EXPORT
const char *
bactext_property_name_default(unsigned index, const char *default_string);
bactext_property_name_default(uint32_t index, const char *default_string);
BACNET_STACK_EXPORT
bool bactext_property_index(const char *search_name, unsigned *found_index);
bool bactext_property_index(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
bool bactext_property_strtol(const char *search_name, unsigned *found_index);
bool bactext_property_strtol(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
bool bactext_engineering_unit_name_proprietary(unsigned index);
bool bactext_engineering_unit_name_proprietary(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_engineering_unit_name(unsigned index);
const char *bactext_engineering_unit_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_engineering_unit_index(
const char *search_name, unsigned *found_index);
const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_reject_reason_name(unsigned index);
const char *bactext_reject_reason_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_abort_reason_name(unsigned index);
const char *bactext_abort_reason_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_error_class_name(unsigned index);
const char *bactext_error_class_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_error_code_name(unsigned index);
const char *bactext_error_code_name(uint32_t index);
BACNET_STACK_EXPORT
unsigned bactext_property_id(const char *name);
uint32_t bactext_property_id(const char *name);
BACNET_STACK_EXPORT
const char *bactext_month_name(unsigned index);
const char *bactext_month_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_week_of_month_name(unsigned index);
const char *bactext_week_of_month_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_day_of_week_name(unsigned index);
const char *bactext_day_of_week_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_notify_type_name(unsigned index);
const char *bactext_notify_type_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_notify_type_index(const char *search_name, unsigned *found_index);
bool bactext_notify_type_index(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_event_state_name(unsigned index);
const char *bactext_event_state_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_event_state_index(const char *search_name, unsigned *found_index);
bool bactext_event_state_index(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
bool bactext_event_state_strtol(const char *search_name, unsigned *found_index);
bool bactext_event_state_strtol(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_event_type_name(unsigned index);
const char *bactext_event_type_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_event_type_index(const char *search_name, unsigned *found_index);
bool bactext_event_type_index(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_binary_present_value_name(unsigned index);
const char *bactext_binary_present_value_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_binary_polarity_name(unsigned index);
const char *bactext_binary_polarity_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_binary_present_value_index(
const char *search_name, unsigned *found_index);
const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_reliability_name(unsigned index);
const char *bactext_reliability_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_device_status_name(unsigned index);
const char *bactext_device_status_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_segmentation_name(unsigned index);
const char *bactext_segmentation_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_segmentation_index(const char *search_name, unsigned *found_index);
bool bactext_segmentation_index(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_node_type_name(unsigned index);
const char *bactext_node_type_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_character_string_encoding_name(unsigned index);
const char *bactext_character_string_encoding_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_event_transition_name(unsigned index);
const char *bactext_event_transition_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_event_transition_index(
const char *search_name, unsigned *found_index);
const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_days_of_week_name(unsigned index);
const char *bactext_days_of_week_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_days_of_week_index(const char *search_name, unsigned *found_index);
bool bactext_days_of_week_index(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_network_layer_msg_name(unsigned index);
const char *bactext_network_layer_msg_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_life_safety_mode_name(unsigned index);
const char *bactext_life_safety_mode_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_life_safety_operation_name(unsigned index);
const char *bactext_life_safety_operation_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_life_safety_state_name(unsigned index);
const char *bactext_life_safety_state_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_silenced_state_name(unsigned index);
const char *bactext_silenced_state_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_device_communications_name(unsigned index);
const char *bactext_device_communications_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_lighting_operation_name(unsigned index);
const char *bactext_lighting_operation_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_lighting_operation_strtol(
const char *search_name, unsigned *found_index);
const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_binary_lighting_pv_name(unsigned index);
const char *bactext_binary_lighting_pv_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_binary_lighting_pv_names_strtol(
const char *search_name, unsigned *found_index);
const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
const char *bactext_lighting_in_progress(unsigned index);
const char *bactext_lighting_in_progress(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_lighting_transition(unsigned index);
const char *bactext_lighting_transition(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_color_operation_name(unsigned index);
const char *bactext_color_operation_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_shed_state_name(unsigned index);
const char *bactext_shed_state_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_shed_level_type_name(unsigned index);
const char *bactext_shed_level_type_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_log_datum_name(unsigned index);
const char *bactext_log_datum_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_restart_reason_name(unsigned index);
const char *bactext_restart_reason_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_network_port_type_name(unsigned index);
const char *bactext_network_port_type_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_network_number_quality_name(unsigned index);
const char *bactext_network_number_quality_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_protocol_level_name(unsigned index);
const char *bactext_protocol_level_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_network_port_command_name(unsigned index);
const char *bactext_network_port_command_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_authentication_decision_name(unsigned index);
const char *bactext_authentication_decision_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_authorization_posture_name(unsigned index);
const char *bactext_authorization_posture_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_fault_type_name(unsigned index);
const char *bactext_fault_type_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bacnet_priority_filter_name(unsigned index);
const char *bacnet_priority_filter_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_success_filter_name(unsigned index);
const char *bactext_success_filter_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_result_flags_name(unsigned index);
const char *bactext_result_flags_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_logging_type_name(unsigned index);
const char *bactext_logging_type_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_program_request_name(unsigned index);
const char *bactext_program_request_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_program_state_name(unsigned index);
const char *bactext_program_state_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_program_error_name(unsigned index);
const char *bactext_program_error_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_timer_transition_name(unsigned index);
const char *bactext_timer_transition_name(uint32_t index);
BACNET_STACK_EXPORT
const char *bactext_timer_state_name(unsigned index);
const char *bactext_timer_state_name(uint32_t index);
BACNET_STACK_EXPORT
bool bactext_strtoul(const char *search_name, unsigned *found_index);
bool bactext_strtoul(const char *search_name, uint32_t *found_index);
BACNET_STACK_EXPORT
bool bactext_object_property_strtoul(
BACNET_OBJECT_TYPE object_type,
BACNET_PROPERTY_ID object_property,
const char *search_name,
unsigned *found_index);
uint32_t *found_index);
#ifdef __cplusplus
}