home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / EVENTS.CPP < prev    next >
C/C++ Source or Header  |  1997-01-16  |  935b  |  22 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl\vcl.h>
  7. #pragma hdrstop
  8. //---------------------------------------------------------------------------
  9. USEFORM("Event1.cpp", frmEvents);
  10. USEDATAMODULE("Event2.cpp", dmEvents);
  11. //---------------------------------------------------------------------
  12. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  13. {
  14.     Application->Initialize();
  15.     Application->CreateForm(__classid(TfrmEvents), &frmEvents);
  16.     Application->CreateForm(__classid(TdmEvents), &dmEvents);
  17.     Application->Run();
  18.  
  19.     return 0;
  20. }
  21. //---------------------------------------------------------------------------
  22.