view src/lib-storage/index/index-sort.h @ 903:fd8888f6f037 HEAD

Naming style changes, finally got tired of most of the typedefs. Also the previous enum -> macro change reverted so that we don't use the highest bit anymore, that's incompatible with old indexes so they will be rebuilt.
author Timo Sirainen <tss@iki.fi>
date Sun, 05 Jan 2003 15:09:51 +0200
parents f57c52738f90
children 4f697dde0fca
line wrap: on
line source

#ifndef __INDEX_SORT_H
#define __INDEX_SORT_H

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

struct index_sort_context {
	struct index_mailbox *ibox;
	struct ostream *output;

	unsigned int last_uid;
	struct mail_index_record *rec;

	unsigned int cached:1;
};

extern struct mail_sort_funcs index_sort_funcs;

#endif