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

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

abdevをATL化するための下準備

File size: 297 bytes
Line 
1#pragma once
2
3namespace ActiveBasic{ namespace IDE{
4
5
6class Program
7{
8    static MainFrame mainFrame;
9
10    static void InitializeWindow();
11public:
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.