ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

gamma_stubs.c
Go to the documentation of this file.
00001 /* $Id: gamma.c 24690 2006-11-05 21:19:53Z greatlrd $
00002  *
00003  * COPYRIGHT:            See COPYING in the top level directory
00004  * PROJECT:              ReactOS DirectX
00005  * FILE:                 ddraw/gamma/gamma_stubs.c
00006  * PURPOSE:              IDirectDrawGamma Implementation
00007  * PROGRAMMER:           Maarten Bosma
00008  *
00009  */
00010 
00011 #include "rosdraw.h"
00012 
00013 ULONG WINAPI
00014 DirectDrawGammaControl_AddRef( LPDIRECTDRAWGAMMACONTROL iface)
00015 {
00016   DX_WINDBG_trace();
00017 
00018    DX_STUB;
00019 }
00020 
00021 ULONG WINAPI
00022 DirectDrawGammaControl_Release( LPDIRECTDRAWGAMMACONTROL iface)
00023 {
00024     LPDDRAWI_DDGAMMACONTROL_INT This = (LPDDRAWI_DDGAMMACONTROL_INT)iface;
00025 
00026     DX_WINDBG_trace();
00027     /* FIXME
00028        This is not right exiame how it should be done
00029      */
00030     DX_STUB_str("FIXME This is not right exiame how it should be done\n");
00031     return This->dwIntRefCnt;
00032 }
00033 
00034 HRESULT WINAPI
00035 DirectDrawGammaControl_QueryInterface( LPDIRECTDRAWGAMMACONTROL iface,
00036                                        REFIID riid,
00037                                        LPVOID *ppObj)
00038 {
00039    DX_WINDBG_trace();
00040    DX_STUB;
00041 }
00042 
00043 HRESULT WINAPI
00044 DirectDrawGammaControl_GetGammaRamp( LPDIRECTDRAWGAMMACONTROL iface,
00045                                      DWORD dwFlags,
00046                                      LPDDGAMMARAMP lpGammaRamp)
00047 {
00048    DX_WINDBG_trace();
00049    DX_STUB;
00050 }
00051 
00052 HRESULT WINAPI
00053 DirectDrawGammaControl_SetGammaRamp( LPDIRECTDRAWGAMMACONTROL iface,
00054                                      DWORD dwFlags,
00055                                      LPDDGAMMARAMP lpGammaRamp)
00056 {
00057    DX_WINDBG_trace();
00058    DX_STUB;
00059 }
00060 
00061 IDirectDrawGammaControlVtbl DirectDrawGammaControl_Vtable =
00062 {
00063     DirectDrawGammaControl_QueryInterface,
00064     DirectDrawGammaControl_AddRef,
00065     DirectDrawGammaControl_Release,
00066     DirectDrawGammaControl_GetGammaRamp,
00067     DirectDrawGammaControl_SetGammaRamp
00068 };

Generated on Sun May 27 2012 04:21:25 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.