@@ -198,6 +198,8 @@ def get_write_filter_function(filter_name):
198198ffi ('entry_rdevminor' , [c_archive_entry_p ], c_uint )
199199ffi ('entry_uid' , [c_archive_entry_p ], c_longlong )
200200ffi ('entry_gid' , [c_archive_entry_p ], c_longlong )
201+ ffi ('entry_uname_w' , [c_archive_entry_p ], c_wchar_p )
202+ ffi ('entry_gname_w' , [c_archive_entry_p ], c_wchar_p )
201203
202204ffi ('entry_set_size' , [c_archive_entry_p , c_longlong ], None )
203205ffi ('entry_set_filetype' , [c_archive_entry_p , c_uint ], None )
@@ -220,6 +222,8 @@ def get_write_filter_function(filter_name):
220222
221223ffi ('entry_update_pathname_utf8' , [c_archive_entry_p , c_char_p ], c_int , check_int )
222224ffi ('entry_update_link_utf8' , [c_archive_entry_p , c_char_p ], c_int , check_int )
225+ ffi ('entry_update_uname_utf8' , [c_archive_entry_p , c_char_p ], c_int , check_int )
226+ ffi ('entry_update_gname_utf8' , [c_archive_entry_p , c_char_p ], c_int , check_int )
223227
224228ffi ('entry_clear' , [c_archive_entry_p ], c_archive_entry_p )
225229ffi ('entry_free' , [c_archive_entry_p ], None )
0 commit comments