2001-02-14 01:27:34 +01:00
|
|
|
/*
|
|
|
|
* DirectDraw HAL XVidMode interface
|
|
|
|
*
|
|
|
|
* Copyright 2001 TransGaming Technologies, Inc.
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-02-14 01:27:34 +01:00
|
|
|
*/
|
|
|
|
#ifndef __WINE_XVIDMODE_H
|
|
|
|
#define __WINE_XVIDMODE_H
|
2001-11-06 21:57:11 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
#ifndef __WINE_CONFIG_H
|
|
|
|
# error You must include config.h to use this header
|
|
|
|
#endif
|
2001-11-06 21:57:11 +01:00
|
|
|
|
2008-06-26 14:02:17 +02:00
|
|
|
#ifdef SONAME_LIBXXF86VM
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
2001-02-14 01:27:34 +01:00
|
|
|
#include "ddrawi.h"
|
|
|
|
|
|
|
|
void X11DRV_XF86VM_Init(void);
|
|
|
|
void X11DRV_XF86VM_Cleanup(void);
|
|
|
|
void X11DRV_XF86VM_SetExclusiveMode(int lock);
|
2001-03-20 02:24:08 +01:00
|
|
|
|
|
|
|
BOOL X11DRV_XF86VM_GetGammaRamp(LPDDGAMMARAMP ramp);
|
|
|
|
BOOL X11DRV_XF86VM_SetGammaRamp(LPDDGAMMARAMP ramp);
|
2001-02-14 01:27:34 +01:00
|
|
|
|
2008-06-26 14:02:17 +02:00
|
|
|
#endif /* SONAME_LIBXXF86VM */
|
2001-02-14 01:27:34 +01:00
|
|
|
#endif /* __WINE_XVIDMODE_H */
|