home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / HTML.CPP < prev    next >
C/C++ Source or Header  |  1997-01-16  |  948b  |  23 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("main.cpp", Form1);
  10. USERES("html.res");
  11. USEFORM("DocSrc.cpp", DocSourceFrm);
  12. //---------------------------------------------------------------------
  13. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  14. {
  15.     Application->Initialize();
  16.     Application->CreateForm(__classid(TForm1), &Form1);
  17.     Application->CreateForm(__classid(TDocSourceFrm), &DocSourceFrm);
  18.     Application->Run();
  19.  
  20.     return 0;
  21. }
  22. //---------------------------------------------------------------------------
  23.