source: dev/trunk/ab5.0/abdev/abdev/include/Program.h @ 629

Last change on this file since 629 was 629, checked in by dai_9181, 15 years ago

MDIINFO構造体をリファクタリング。

File size: 297 bytes
Line 
1#pragma once
2
3namespace ActiveBasic{ namespace IDE{
4
5
6class Program
7{
8
9    static void InitializeWindow();
10public:
11    static MainFrame mainFrame;
12    static CAppModule _Module;
13
14    static void Main();
15
16
17
18    static HWND GetMainFrameWndHandle()
19    {
20        return mainFrame.m_hWnd;
21    }
22};
23
24
25}}
Note: See TracBrowser for help on using the repository browser.