blob: 2fd683ed4e8e7aab1ae86db1b7c1754dc9c1a75f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#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
|