Ignore:
Timestamp:
Nov 26, 2002, 11:53:12 AM (23 years ago)
Author:
sandervl
Message:

Added debug wrappers for all exports

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/opengl.cpp

    r2802 r9429  
    1 /* $Id: opengl.cpp,v 1.8 2000-02-16 14:18:11 sandervl Exp $ */
     1/* $Id: opengl.cpp,v 1.9 2002-11-26 10:53:11 sandervl Exp $ */
    22
    33/*
     
    119119 *****************************************************************************/
    120120
    121 ODINFUNCTION2(int,ChoosePixelFormat,HDC,                         hdc,
    122                                     CONST PIXELFORMATDESCRIPTOR*,pformat)
     121int WIN32API ChoosePixelFormat(HDC hdc, CONST PIXELFORMATDESCRIPTOR* pformat)
    123122{
    124123  if (glChoosePixelFormat == NULL)
     
    129128}
    130129
    131 ODINFUNCTION4(int,DescribePixelFormat,HDC,hdc,
    132                                       int,iFormat,
    133                                       UINT,nBytes,
    134                                       LPPIXELFORMATDESCRIPTOR,pformat)
     130int WIN32API DescribePixelFormat(HDC hdc, int iFormat, UINT nBytes,
     131                                      LPPIXELFORMATDESCRIPTOR pformat)
    135132{
    136133  if (glDescribePixelFormat == NULL)
     
    141138}
    142139
    143 ODINFUNCTION1(int,GetPixelFormat,HDC,hdc)
     140int WIN32API GetPixelFormat(HDC hdc)
    144141{
    145142  if (glGetPixelFormat == NULL)
     
    162159 *****************************************************************************/
    163160
    164 ODINFUNCTION3(BOOL,SetPixelFormat,HDC,                          hdc,
    165                                   int,                          whatever,
    166                                   CONST PIXELFORMATDESCRIPTOR*, pformat)
     161BOOL WIN32API SetPixelFormat(HDC hdc, int whatever,
     162                             CONST PIXELFORMATDESCRIPTOR *pformat)
    167163{
    168164  if (glSetPixelFormat == NULL)
     
    186182 *****************************************************************************/
    187183
    188 ODINFUNCTION1(BOOL,SwapBuffers,HDC,hdc)
     184BOOL WIN32API SwapBuffers(HDC hdc)
    189185{
    190186  if (glSwapBuffers == NULL)
Note: See TracChangeset for help on using the changeset viewer.