fb.h (342B)
1 /* $Id$ 2 ** 3 ** Copyright 1999 Brian J. Swetland. All rights reserved. 4 ** Distributed under the terms of the OpenBLT License 5 */ 6 7 #ifndef _FB_H 8 #define _FB_H 9 10 #include <blt/types.h> 11 12 void dprintf(const char *fmt, ...); 13 14 typedef struct fb_info 15 { 16 const char *name; 17 int32 (*find)(void **cookie); 18 int32 (*init)(void *cookie); 19 } fb_info; 20 21 #endif