You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
546 B
27 lines
546 B
#ifndef GFXWINTOOLS_INCLUDED // -*- C++ -*-
|
|
#define GFXWINTOOLS_INCLUDED
|
|
#if !defined(__GNUC__)
|
|
# pragma once
|
|
#endif
|
|
|
|
/************************************************************************
|
|
|
|
Support code for handling various tasks under Win32
|
|
|
|
$Id: wintools.h 427 2004-09-27 04:45:31Z garland $
|
|
|
|
************************************************************************/
|
|
|
|
#include <windows.h>
|
|
|
|
namespace gfx
|
|
{
|
|
|
|
extern HGLRC create_glcontext(HDC dc);
|
|
extern int set_pixel_format(HDC dc);
|
|
|
|
} // namespace gfx
|
|
|
|
// GFXWINTOOLS_INCLUDED
|
|
#endif
|