home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / Autocon / AUTOCON.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  894 b   |  23 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------
  6. #include <vcl.h>
  7. #pragma hdrstop
  8. //---------------------------------------------------------------------
  9. USEFILE("readme.txt");
  10. USEFORM("auto1.cpp", Form1);
  11. USERES("autocon.res");
  12. USEUNIT("..\autosrv\srvr_tlb.cpp");
  13. //----------------------------------------------------------------------------
  14. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  15. {
  16.     Application->Initialize();
  17.     Application->CreateForm(__classid(TForm1), &Form1);
  18.     Application->Run();
  19.  
  20.     return 0;
  21. }
  22. //---------------------------------------------------------------------
  23.