diff options
author | David Robillard <d@drobilla.net> | 2021-09-10 20:11:40 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-09-10 20:54:28 -0400 |
commit | 06443ecb437eebcf3373b1034ca5ff84ebe212df (patch) | |
tree | 89c4c0d72eac6b10d88bf1042584d84cf9fc607f /include/zix/common.h | |
parent | 6d4cb50fa2f2cdd092e9459a6da59eb3cdda7434 (diff) | |
download | zix-06443ecb437eebcf3373b1034ca5ff84ebe212df.tar.gz zix-06443ecb437eebcf3373b1034ca5ff84ebe212df.tar.bz2 zix-06443ecb437eebcf3373b1034ca5ff84ebe212df.zip |
Add a user handle to destroy callback
Diffstat (limited to 'include/zix/common.h')
-rw-r--r-- | include/zix/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zix/common.h b/include/zix/common.h index 02f00b4..f43fcde 100644 --- a/include/zix/common.h +++ b/include/zix/common.h @@ -124,7 +124,7 @@ typedef int (*ZixComparator)(const void* a, typedef bool (*ZixEqualFunc)(const void* a, const void* b); /// Function to destroy an element -typedef void (*ZixDestroyFunc)(void* ptr); +typedef void (*ZixDestroyFunc)(void* ptr, const void* user_data); /** @} |