---------------------------------------------------------------------------
| 19 | #include <ComCtrls.hpp> |
| 20 | //--------------------------------------------------------------------------- |
| 21 | class TMessageForm : public TForm |
| 22 | { |
| 23 | __published: // IDE-managed Components |
| 24 | TSpeedButton *OkButton; |
| 25 | TSpeedButton *CloseButton; |
| 26 | TGroupBox *GroupBox; |
| 27 | TImage *Image; |
| 28 | TMemo *Memo; |
| 29 | void __fastcall FormKeyDown(TObject *Sender, WORD &Key, |
| 30 | TShiftState Shift); |
| 31 | void __fastcall CloseButtonClick(TObject *Sender); |
| 32 | void __fastcall FormClose(TObject *Sender, TCloseAction &Action); |
| 33 | void __fastcall FormDestroy(TObject *Sender); |
| 34 | private: // User declarations |
| 35 | public: // User declarations |
| 36 | __fastcall TMessageForm(TComponent* Owner); |
| 37 | }; |
| 38 | //--------------------------------------------------------------------------- |
| 39 | extern PACKAGE TMessageForm *MessageForm; |
| 40 | //--------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected