source:
dev/trunk/ab5.0/abdev/abdev/include/Program.h
@
629
Last change on this file since 629 was 629, checked in by , 15 years ago | |
---|---|
File size: 297 bytes |
Rev | Line | |
---|---|---|
[475] | 1 | #pragma once |
2 | ||
3 | namespace ActiveBasic{ namespace IDE{ | |
4 | ||
5 | ||
6 | class Program | |
7 | { | |
[489] | 8 | |
9 | static void InitializeWindow(); | |
[475] | 10 | public: |
[629] | 11 | static MainFrame mainFrame; |
[489] | 12 | static CAppModule _Module; |
13 | ||
14 | static void Main(); | |
15 | ||
16 | ||
17 | ||
18 | static HWND GetMainFrameWndHandle() | |
19 | { | |
20 | return mainFrame.m_hWnd; | |
21 | } | |
[475] | 22 | }; |
23 | ||
24 | ||
25 | }} |
Note: See TracBrowser
for help on using the repository browser.