1139749Simp/*-
285810Sobrien * Copyright (c) 1995, 1996 Carnegie-Mellon University.
385810Sobrien * All rights reserved.
485810Sobrien *
585810Sobrien * Author: Chris G. Demetriou
685810Sobrien *
785810Sobrien * Permission to use, copy, modify and distribute this software and
885810Sobrien * its documentation is hereby granted, provided that both the copyright
985810Sobrien * notice and this permission notice appear in all copies of the
1085810Sobrien * software, derivative works or modified versions, and any portions
1185810Sobrien * thereof, and that both notices appear in supporting documentation.
1285810Sobrien *
1385810Sobrien * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
1485810Sobrien * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
1585810Sobrien * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
1685810Sobrien *
1785810Sobrien * Carnegie Mellon requests users of this software to return to
1885810Sobrien *
1985810Sobrien *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
2085810Sobrien *  School of Computer Science
2185810Sobrien *  Carnegie Mellon University
2285810Sobrien *  Pittsburgh PA 15213-3890
2385810Sobrien *
2485810Sobrien * any improvements or extensions that they make and grant Carnegie the
2585810Sobrien * rights to redistribute these changes.
2685810Sobrien *
2785810Sobrien * Copyright (c) 2000 Andrew Miklic
2885810Sobrien *
2985810Sobrien * $FreeBSD$
3085810Sobrien */
3185810Sobrien
3285810Sobrien#ifndef _FB_GFB_H_
3385810Sobrien#define _FB_GFB_H_
3485810Sobrien
3585810Sobrienstruct gfb_font {
3685810Sobrien	int width;
3785810Sobrien	int height;
38170837Smarius	const u_char data[];
3985810Sobrien};
4085810Sobrien
4185810Sobrien#endif /* _FB_GFB_H_ */
42