ASPiK SDK
platform_win32.h
1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #pragma once
6 
7 #include "iplatformframe.h"
8 
9 #if WINDOWS
10 
11 #include "../iplatformviewlayer.h"
12 
13 #include <windows.h>
14 
15 //-----------------------------------------------------------------------------
16 namespace VSTGUI {
17 
18 //-----------------------------------------------------------------------------
19 // extens IPlatformFrame on Microsoft Windows
20 class IWin32PlatformFrame
21 {
22 public:
23  virtual HWND getHWND () const = 0;
24 };
25 
26 //-----------------------------------------------------------------------------
27 } // VSTGUI
28 
29 #endif
30 
Definition: customcontrols.cpp:8