home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / FILMANEX.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-15  |  566 b   |  16 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("fmxwin.cpp", FMForm);
  6. //---------------------------------------------------------------------
  7. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  8. {
  9.     Application->Initialize();
  10.     Application->CreateForm(__classid(TFMForm), &FMForm);
  11.     Application->Run();
  12.  
  13.     return 0;
  14. }
  15. //---------------------------------------------------------------------------
  16.