-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctionstack.cpp
31 lines (25 loc) · 942 Bytes
/
functionstack.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "..\ELI\eli_interface.h"
#include "..\work-functions\MyFunc.h"
#include "main.h"
#include "functionstack.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TShowFuncStackForm *ShowFuncStackForm;
extern ELI_INTERFACE *eIface;
//---------------------------------------------------------------------------
__fastcall TShowFuncStackForm::TShowFuncStackForm(TComponent* Owner)
: TForm(Owner)
{
Owner = ELIExtIDEForm;
Parent = ELIExtIDEForm;
}
//---------------------------------------------------------------------------
void __fastcall TShowFuncStackForm::FormClose(TObject *Sender, TCloseAction &Action)
{
ELIExtIDEForm->MenuShowFuncStack->Click();
}
//---------------------------------------------------------------------------