diff options
author | scottl <scottl@FreeBSD.org> | 2003-11-05 06:56:08 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2003-11-05 06:56:08 +0000 |
commit | aa058296bcb3ac9e303628d7414f4634cdba452e (patch) | |
tree | 0b543d04f8a1e099f6c425d001765859a22ff579 /sys/fs/udf/udf.h | |
parent | c7d964d2cef031c840960d17686a8247a9528514 (diff) | |
download | FreeBSD-src-aa058296bcb3ac9e303628d7414f4634cdba452e.zip FreeBSD-src-aa058296bcb3ac9e303628d7414f4634cdba452e.tar.gz |
Add hooks for translating directories entries using the iconv methods.
Submitted by: imura@ryu16.org
Diffstat (limited to 'sys/fs/udf/udf.h')
-rw-r--r-- | sys/fs/udf/udf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/fs/udf/udf.h b/sys/fs/udf/udf.h index f214c14..540a3a6 100644 --- a/sys/fs/udf/udf.h +++ b/sys/fs/udf/udf.h @@ -58,6 +58,10 @@ struct udf_mnt { int p_sectors; int s_table_entries; struct udf_sparing_table *s_table; + void *im_d2l; /* disk->local iconv handle */ +#if 0 + void *im_l2d; /* local->disk iconv handle */ +#endif }; struct udf_dirstream { |