1 /*-
2  * Copyright (c) 2002 Jordan DeLong
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of contributors may be
14  *    used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29 #ifndef FORWARD_H
30 #define FORWARD_H
31 
32 /*
33  * forward declarations of structures
34  */
35 typedef struct buffer		buffer_t;
36 typedef struct bufferlist	bufferlist_t;
37 typedef struct bufferhash	bufferhash_t;
38 typedef struct command		command_t;
39 typedef struct commandlist	commandlist_t;
40 typedef struct hashtab		hashtab_t;
41 typedef struct hashtablist	hashtablist_t;
42 typedef struct frame		frame_t;
43 typedef struct framenode	framenode_t;
44 typedef struct framelist	framelist_t;
45 typedef struct killring		killring_t;
46 typedef struct killbuffer	killbuffer_t;
47 typedef struct line		line_t;
48 typedef struct linelist		linelist_t;
49 typedef struct module		module_t;
50 typedef struct mark		mark_t;
51 typedef struct opt		opt_t;
52 typedef struct optlist		optlist_t;
53 typedef struct options		options_t;
54 typedef struct rect		rect_t;
55 typedef struct region		region_t;
56 typedef struct undo		undo_t;
57 typedef struct undolist		undolist_t;
58 typedef struct vdefault		vdefault_t;
59 typedef struct vminibuff	vminibuff_t;
60 typedef struct viewhdr		viewhdr_t;
61 typedef struct viewlist		viewlist_t;
62 typedef struct viewops		viewops_t;
63 typedef struct viewtype		viewtype_t;
64 typedef struct viewtypelist	viewtypelist_t;
65 typedef struct viewtypeops	viewtypeops_t;
66 
67 #endif
68