0001: // ---------------------------------------------------------------------------
0002: // File: tpotGL.h
0003: //
0004: // OpenGLをフォームからの呼び出しに使うインターフェイス
0005: //
0006: // Copyright (c) 2005 IMAGIRE Takashi. All rights reserved.
0007: // ---------------------------------------------------------------------------
0008: #pragma once
0009: 
0010: namespace tpot
0011: {
0012:     // 初期化
0013:     void *InitGL(System::IntPtr hWnd);
0014:     // 後片付け
0015:     void  DestroyGL(void*);
0016: 
0017: }// namespace tpot
0018: