forked from crypto2011/IDR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KBViewer.h
52 lines (51 loc) · 1.75 KB
/
KBViewer.h
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//---------------------------------------------------------------------------
#ifndef KBViewerH
#define KBViewerH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TFKBViewer_11011981 : public TForm
{
__published: // IDE-managed Components
TListBox *lbKB;
TListBox *lbIDR;
TPanel *Panel3;
TButton *bPrev;
TButton *bNext;
TButton *btnOk;
TButton *btnCancel;
TLabel *lPosition;
TSplitter *Splitter1;
TEdit *edtCurrIdx;
TLabel *lKBIdx;
TPanel *Panel1;
TComboBox *cbUnits;
TLabel *Label1;
TLabel *lblKbIdxs;
void __fastcall bPrevClick(TObject *Sender);
void __fastcall bNextClick(TObject *Sender);
void __fastcall btnOkClick(TObject *Sender);
void __fastcall btnCancelClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall edtCurrIdxChange(TObject *Sender);
void __fastcall cbUnitsChange(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
int UnitsNum;
int CurrIdx;
DWORD CurrAdr;
public: // User declarations
int Position;
DWORD FromIdx;//First Unit idx
DWORD ToIdx; //Last Unit idx
__fastcall TFKBViewer_11011981(TComponent* Owner);
void __fastcall ShowCode(DWORD adr, int idx);
};
//---------------------------------------------------------------------------
extern PACKAGE TFKBViewer_11011981 *FKBViewer_11011981;
//---------------------------------------------------------------------------
#endif