diff options
author | 2024-11-26 18:39:28 +0100 | |
---|---|---|
committer | 2024-11-28 17:32:39 +0100 | |
commit | 9bdf7fe983311e8c573d7c466c2006059645c4ba (patch) | |
tree | 293fe31fda5a98b03d83fe4fe6e821a4664264e6 /include | |
parent | 7d3cc96077d859fcda6dfe2a6bd2b1eb589af66d (diff) | |
download | libimobiledevice-glue-9bdf7fe983311e8c573d7c466c2006059645c4ba.tar.gz libimobiledevice-glue-9bdf7fe983311e8c573d7c466c2006059645c4ba.tar.bz2 |
Fix compilation on MSVC
Diffstat (limited to 'include')
-rw-r--r-- | include/libimobiledevice-glue/nskeyedarchive.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libimobiledevice-glue/nskeyedarchive.h b/include/libimobiledevice-glue/nskeyedarchive.h index 5aad4d6..304495a 100644 --- a/include/libimobiledevice-glue/nskeyedarchive.h +++ b/include/libimobiledevice-glue/nskeyedarchive.h @@ -57,9 +57,9 @@ LIMD_GLUE_API void nskeyedarchive_free(nskeyedarchive_t ka); LIMD_GLUE_API void nskeyedarchive_set_top_ref_key_name(nskeyedarchive_t ka, const char* keyname); -LIMD_GLUE_API uint64_t nskeyedarchive_add_top_class(nskeyedarchive_t ka, const char* classname, ...) __attribute__ ((sentinel(0))); +LIMD_GLUE_API uint64_t nskeyedarchive_add_top_class(nskeyedarchive_t ka, const char* classname, ...); LIMD_GLUE_API void nskeyedarchive_add_top_class_uid(nskeyedarchive_t ka, uint64_t uid); -LIMD_GLUE_API void nskeyedarchive_append_class(nskeyedarchive_t ka, const char* classname, ...) __attribute__ ((sentinel(0))); +LIMD_GLUE_API void nskeyedarchive_append_class(nskeyedarchive_t ka, const char* classname, ...); LIMD_GLUE_API void nskeyedarchive_append_object(nskeyedarchive_t ka, plist_t object); LIMD_GLUE_API void nskeyedarchive_nsarray_append_item(nskeyedarchive_t ka, uint64_t uid, enum nskeyedarchive_class_type_t type, ...); |