* Create help for explaining how encrypted password file support
[alpine.git] / pith / busy.h
blobf3be42b91a3062823f1d297a7e3d2d52d47b02be
1 /*
2 * $Id: busy.h 761 2007-10-23 22:35:18Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006 University of Washington
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * ========================================================================
16 #ifndef PITH_BUSY_INCLUDED
17 #define PITH_BUSY_INCLUDED
20 typedef int (*percent_done_t)(); /* returns %done for progress status msg */
23 /* used to tweak busy without it */
24 #ifndef ALARM_BLIP
25 #define ALARM_BLIP()
26 #endif
29 /* exported protoypes */
32 /* currently mandatory to implement stubs */
34 int busy_cue(char *, percent_done_t, int);
35 void cancel_busy_cue(int);
38 #endif /* PITH_BUSY_INCLUDED */