X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Flist.h;h=7c0a74430b1a875041f7a8f3a9833e996f3e81e0;hb=9b1647d673092a6c53a90c1d89831a5131660b9d;hp=b5717c489093e89e079cf9fadac6848e72d3c6b9;hpb=eb066ffe5f37eae975c285cbbfc377247b0d60ff;p=wimlib diff --git a/src/list.h b/src/list.h index b5717c48..7c0a7443 100644 --- a/src/list.h +++ b/src/list.h @@ -39,21 +39,6 @@ struct hlist_node { struct hlist_node *next, **pprev; }; -/* - * Structure used to create a linked list of streams that share the same lookup - * table entry. This structure may be embedded in either a inode (for the - * un-named data stream) or an ads_entry (for an alternate data stream). The - * @type field indicates which of these structures the stream_list_head is - * embedded in. - */ -struct stream_list_head { - struct list_head list; - enum { - STREAM_TYPE_NORMAL = 0, - STREAM_TYPE_ADS, - } type; -}; - /* * Simple doubly linked list implementation. *