home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / FILMANEX.CPP < prev    next >
C/C++ Source or Header  |  1997-02-28  |  1KB  |  26 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl\vcl.h>
  7. #pragma hdrstop
  8. //---------------------------------------------------------------------------
  9. USERES("FILMANEX.res");
  10. USEFORM("FATTRDLG.CPP", FileAttrDlg);
  11. USEFORM("Fchngdlg.cpp", ChangeDlg);
  12. USEUNIT("fmxUtils.cpp");
  13. USEFORM("fmxwin.cpp", FormMain);
  14. //---------------------------------------------------------------------
  15. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  16. {
  17.     Application->Initialize();
  18.     Application->CreateForm(__classid(TFormMain), &FormMain);
  19.     Application->CreateForm(__classid(TFileAttrDlg), &FileAttrDlg);
  20.     Application->CreateForm(__classid(TChangeDlg), &ChangeDlg);
  21.     Application->Run();
  22.  
  23.     return 0;
  24. }
  25. //---------------------------------------------------------------------------
  26.