-
Notifications
You must be signed in to change notification settings - Fork 226
/
TypeInfo.h
38 lines (38 loc) · 1.48 KB
/
TypeInfo.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
//---------------------------------------------------------------------------
#ifndef TypeInfoH
#define TypeInfoH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "KnowledgeBase.h"
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
String __fastcall Guid2String(BYTE* Guid);
//---------------------------------------------------------------------------
class TFTypeInfo_11011981 : public TForm
{
__published: // IDE-managed Components
TMemo *memDescription;
TPanel *Panel1;
TButton *bSave;
void __fastcall FormKeyDown(TObject *Sender, WORD &Key,
TShiftState Shift);
void __fastcall bSaveClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
int RTTIKind;
DWORD RTTIAdr;
String RTTIName;
public: // User declarations
__fastcall TFTypeInfo_11011981(TComponent* Owner);
void __fastcall ShowKbInfo(MTypeInfo* tInfo);
String __fastcall GetRTTI(DWORD adr);
String __fastcall GetCppTypeInfo(DWORD adr, int* size, int action);
void __fastcall ShowRTTI(DWORD adr);
};
//---------------------------------------------------------------------------
extern PACKAGE TFTypeInfo_11011981 *FTypeInfo_11011981;
//---------------------------------------------------------------------------
#endif