blob: 824b7916927ec441ca6b0a5b6138e948e864e61b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* atifillin.h: header for atifillin.c.
*
* (c) 2004 Adam Jackson. Standard MIT license applies.
*/
#ifndef ATI_FILLIN_H
#define ATI_FILLIN_H
/* include headers corresponding to fields touched by ATIFillInScreenInfo() */
#include "ativersion.h"
#include "atiprobe.h"
#include "atipreinit.h"
#include "atiscreen.h"
#include "aticonsole.h"
#include "atiadjust.h"
#include "ativalid.h"
extern void ATIFillInScreenInfo FunctionPrototype((ScrnInfoPtr));
#endif
|