annotate src/osdep/dos/dummy.h @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
1 /* ========================================================================
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
2 * Copyright 1988-2006 University of Washington
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
3 *
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
4 * Licensed under the Apache License, Version 2.0 (the "License");
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
5 * you may not use this file except in compliance with the License.
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
6 * You may obtain a copy of the License at
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
7 *
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
8 * http://www.apache.org/licenses/LICENSE-2.0
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
9 *
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
10 *
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
11 * ========================================================================
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
12 */
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
13
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
14 /*
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
15 * Program: Dummy routines
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
16 *
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
17 * Author: Mark Crispin
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
18 * Networks and Distributed Computing
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
19 * Computing & Communications
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
20 * University of Washington
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
21 * Administration Building, AG-44
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
22 * Seattle, WA 98195
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
23 * Internet: MRC@CAC.Washington.EDU
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
24 *
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
25 * Date: 9 May 1991
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
26 * Last Edited: 30 August 2006
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
27 */
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
28
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
29 /* Exported function prototypes */
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
30
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
31 void dummy_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
32 void dummy_list (MAILSTREAM *stream,char *ref,char *pat);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
33 void dummy_lsub (MAILSTREAM *stream,char *ref,char *pat);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
34 long scan_contents (DRIVER *dtb,char *name,char *contents,
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
35 unsigned long csiz,unsigned long fsiz);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
36 long dummy_scan_contents (char *name,char *contents,unsigned long csiz,
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
37 unsigned long fsiz);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
38 long dummy_create (MAILSTREAM *stream,char *mailbox);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
39 long dummy_create_path (MAILSTREAM *stream,char *path,long dirmode);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
40 long dummy_delete (MAILSTREAM *stream,char *mailbox);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
41 long dummy_rename (MAILSTREAM *stream,char *old,char *newname);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
42 char *dummy_file (char *dst,char *name);
ada5e610ab86 imap-2007e
yuuji@gentei.org
parents:
diff changeset
43 long dummy_canonicalize (char *tmp,char *ref,char *pat);

yatex.org