DesignInterface.cpp 828 B

12345678910111213141516171819202122
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include <Interface.h>
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. //---------------------------------------------------------------------------
  8. void __fastcall ShowExtendedException(Exception* E, TObject* Sender)
  9. {
  10. HandleExtendedException(E, Sender);
  11. }
  12. //---------------------------------------------------------------------------
  13. void __fastcall HandleExtendedException(Exception* E, TObject* Sender)
  14. {
  15. Application->ShowException(E);
  16. }
  17. //---------------------------------------------------------------------------
  18. void ConfirmHostKey(int UnknownKey, char *host, int port, char *keytype,
  19. char *keystr, char *fingerprint)
  20. {
  21. }