diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:01 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:01 +0000 |
commit | adc7f9a4ebdfe11d4cd6de9388b63dfe36450b39 (patch) | |
tree | 23eb7becc5360b2cbe16aa8d45529880067f3989 /Xext/EVIstruct.h | |
parent | 90f1536dd315cd265bfc7ef35058761a65a01734 (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_16
Diffstat (limited to 'Xext/EVIstruct.h')
-rw-r--r-- | Xext/EVIstruct.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Xext/EVIstruct.h b/Xext/EVIstruct.h index 9bb24b0d2..dfe4423f8 100644 --- a/Xext/EVIstruct.h +++ b/Xext/EVIstruct.h @@ -21,33 +21,36 @@ DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ********************************************************/ +/* $XFree86: xc/programs/Xserver/Xext/EVIstruct.h,v 3.6 2003/11/17 22:20:26 dawes Exp $ */ + #ifndef EVI_STRUCT_H #define EVI_STRUCT_H + /* ****************************************************************************** ** Per-ddx data ****************************************************************************** */ + typedef int (*GetVisualInfoProc)( -#if NeedNestedPrototypes VisualID32*, int, xExtendedVisualInfo**, int*, VisualID32**, int* -#endif ); + typedef void (*FreeVisualInfoProc)( -#if NeedNestedPrototypes xExtendedVisualInfo*, VisualID32* -#endif ); typedef struct _EviPrivRec { GetVisualInfoProc getVisualInfo; FreeVisualInfoProc freeVisualInfo; } EviPrivRec, *EviPrivPtr; -extern EviPrivPtr eviDDXInit(); -extern void eviDDXReset(); + +extern EviPrivPtr eviDDXInit(void); +extern void eviDDXReset(void); + #endif /* EVI_STRUCT_H */ |