mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
some functions used unsigned values for NTSTATUS values which is signed. Correcting that breaks (strict) ABI compliance
31 lines
885 B
Plaintext
31 lines
885 B
Plaintext
# settings are opaque, ignore all changes
|
|
[suppress_type]
|
|
type_kind = struct
|
|
name = rdp_settings
|
|
|
|
# allow insertions at end of structs
|
|
[suppress_type]
|
|
type_kind = struct
|
|
has_data_members_inserted_at = end
|
|
|
|
# winpr_strerror did use unsigned instead of signed int as argument
|
|
[suppress_function]
|
|
change_kind = function-subtype-change
|
|
name = winpr_strerror
|
|
|
|
# NtStatus2Tag did use unsigned instead of signed NTSTATUS as argument
|
|
[suppress_function]
|
|
change_kind = function-subtype-change
|
|
name = NtStatus2Tag
|
|
|
|
# rdpdr_write_iocompletion_header did use unsigned instead of signed NTSTATUS as argument
|
|
[suppress_function]
|
|
change_kind = function-subtype-change
|
|
name = rdpdr_write_iocompletion_header
|
|
|
|
# smartcard_irp_device_control_call did use unsigned instead of signed NTSTATUS as argument
|
|
[suppress_function]
|
|
change_kind = function-subtype-change
|
|
name = smartcard_irp_device_control_call
|
|
|