~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to src/pop3/pop3-common.h

  • Committer: Package Import Robot
  • Author(s): Jaldhar H. Vyas
  • Date: 2013-09-09 00:57:32 UTC
  • mfrom: (1.13.11)
  • mto: (4.8.5 experimental) (1.16.1)
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: package-import@ubuntu.com-20130909005732-dn1eell8srqbhh0e
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#include "pop3-client.h"
14
14
#include "pop3-settings.h"
15
15
 
16
 
extern void (*hook_client_created)(struct client **client);
 
16
typedef void pop3_client_created_func_t(struct client **client);
 
17
 
 
18
extern pop3_client_created_func_t *hook_client_created;
 
19
 
 
20
/* Sets the hook_client_created and returns the previous hook,
 
21
   which the new_hook should call if it's non-NULL. */
 
22
pop3_client_created_func_t *
 
23
pop3_client_created_hook_set(pop3_client_created_func_t *new_hook);
17
24
 
18
25
void pop3_refresh_proctitle(void);
19
26