view src/lib-storage/index/index-sort.h @ 764:f57c52738f90 HEAD

Renamed IBuffer and OBuffer to IStream and OStream which describes their functionality better. I tried to keep the variable names and comments also sensible.
author Timo Sirainen <tss@iki.fi>
date Fri, 06 Dec 2002 03:09:22 +0200
parents d3bd41a56309
children fd8888f6f037
line wrap: on
line source

#ifndef __INDEX_SORT_H
#define __INDEX_SORT_H

#include "mail-storage.h"
#include "mail-sort.h"

typedef struct {
	IndexMailbox *ibox;
	OStream *output;

	unsigned int last_uid;
	MailIndexRecord *rec;

	unsigned int cached:1;
} IndexSortContext;

extern MailSortFuncs index_sort_funcs;

#endif