1 //---------------------------------------------------------------------------
2 
3 #ifndef PreRelease_H
4 #define PreRelease_H
5 //---------------------------------------------------------------------------
6 #include <Classes.hpp>
7 #include <Controls.hpp>
8 #include <StdCtrls.hpp>
9 #include <Forms.hpp>
10 #include <Menus.hpp>
11 //---------------------------------------------------------------------------
12 class TForm1 : public TForm
13 {
14 __published:    // IDE-managed Components
15     TMainMenu *MainMenu1;
16     TMemo *Memo1;
17     TMenuItem *File1;
18     TMenuItem *Testiftherearetoooldfiles1;
19     TMenuItem *Updateresourcefiles1;
20     void __fastcall Testiftherearetoooldfiles1Click(TObject *Sender);
21     void __fastcall Updateresourcefiles1Click(TObject *Sender);
22 private:    // User declarations
23 public:     // User declarations
24     __fastcall TForm1(TComponent* Owner);
25 };
26 //---------------------------------------------------------------------------
27 extern PACKAGE TForm1 *Form1;
28 //---------------------------------------------------------------------------
29 
30 //---------------------------------------------------------------------------
31 // For Widgets with DEBUG in BCB
32 // Here only because this is useful everywhere
33 #ifdef _DEBUG
wxAssert(int,const wchar_t *,int,const wchar_t *,const wchar_t *)34     void wxAssert(int, const wchar_t*, int, const wchar_t*, const wchar_t*) {}
35 #endif //_DEBUG
36 //---------------------------------------------------------------------------
37 
38 
39 #endif
40