view src/plugins/quota/quota-plugin.h @ 6410:e4eb71ae8e96 HEAD

Changed .h ifdef/defines to use <NAME>_H format.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 11:31:27 +0300
parents beabd433cdae
children db66611fd195
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