-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvarstack.cpp
31 lines (26 loc) · 953 Bytes
/
varstack.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 "varstack.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TShowVarStackForm *ShowVarStackForm;
extern ELI_INTERFACE *eIface;
extern String ide_dir;
//---------------------------------------------------------------------------
__fastcall TShowVarStackForm::TShowVarStackForm(TComponent* Owner)
: TForm(Owner)
{
Owner = ELIExtIDEForm;
Parent = ELIExtIDEForm;
}
//---------------------------------------------------------------------------
void __fastcall TShowVarStackForm::FormClose(TObject *Sender, TCloseAction &Action)
{
ELIExtIDEForm->MenuShowVarStack->Click();
}
//---------------------------------------------------------------------------