/* * @DEC_COPYRIGHT@ */ /* * HISTORY * $Log: myvga.h,v $ * Revision 1.1.2.2 1997/04/24 20:01:26 Paul_Grist * Initial submit of myvga example to ddk pool * [1997/04/24 19:37:24 Paul_Grist] * * $EndLog$ */ /* * @(#)$RCSfile: myvga.h,v $ $Revision: 1.1.2.2 $ (DEC) $Date: 1997/04/24 20:01:26 $ */ /************************************************************************ * * header file included by the DDX to access the myvga driver. * ************************************************************************/ #ifndef _MYVGA_H_ #define _MYVGA_H_ #include struct myvga_ioc_type { short screen; int count; }; /* 23 was chosen because it is greater than the numbers in the * ioctl macros for WS. myvga_ioc_type should also have a different * size than ws_screen_descriptor */ #define MYVGA_IOC_FLASH _IOW ('w',(23|IOC_S), struct myvga_ioc_type) #endif /* _MYVGA_H_ */