Commit aaa480e7 aaa480e7da94082c35806958e00179bcce1cd316 by Sergey Poznyakoff

(getitem): Change signature

1 parent 7679a6dd
1 /* GNU Mailutils -- a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 1999, 2000, 2004 Free Software Foundation, Inc. 2 Copyright (C) 1999, 2000, 2004, 2007 Free Software Foundation, Inc.
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public 5 modify it under the terms of the GNU Lesser General Public
...@@ -39,7 +39,7 @@ struct _mu_iterator ...@@ -39,7 +39,7 @@ struct _mu_iterator
39 int (*destroy) (mu_iterator_t itr, void *owner); 39 int (*destroy) (mu_iterator_t itr, void *owner);
40 int (*first) (void *owner); 40 int (*first) (void *owner);
41 int (*next) (void *owner); 41 int (*next) (void *owner);
42 int (*getitem) (void *owner, void **pret); 42 int (*getitem) (void *owner, void **pret, const void **pkey);
43 int (*curitem_p) (void *owner, void *item); 43 int (*curitem_p) (void *owner, void *item);
44 int (*finished_p) (void *owner); 44 int (*finished_p) (void *owner);
45 }; 45 };
......