view src/plugins/quota/quota-plugin.h @ 6308:b44b090d7c07 HEAD

Use sed instead of $(SED). sed should work everywhere anyway, and $(SED) for some reason doesn't work everywhere.
author Timo Sirainen <tss@iki.fi>
date Wed, 22 Aug 2007 16:24:30 +0300
parents beabd433cdae
children e4eb71ae8e96
line wrap: on
line source

#ifndef __QUOTA_PLUGIN_H
#define __QUOTA_PLUGIN_H

struct mail_storage;

extern void (*quota_next_hook_mail_storage_created)
	(struct mail_storage *storage);
extern void (*quota_next_hook_mailbox_list_created)(struct mailbox_list *list);

/* "quota" symbol already exists in OSX, so we'll use this slightly uglier
   name. */
extern struct quota *quota_set;

void quota_mail_storage_created(struct mail_storage *storage);
void quota_mailbox_list_created(struct mailbox_list *list);

void quota_plugin_init(void);
void quota_plugin_deinit(void);

#endif