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

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFILE("readme.txt");
  6. USEFORM("CLNTFORM.cpp", ClientForm);
  7. USEUNIT("IPCTHRD.cpp");
  8. //---------------------------------------------------------------------
  9. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  10. {
  11.     Application->Initialize();
  12.     Application->CreateForm(__classid(TClientForm), &ClientForm);
  13.     Application->Run();
  14.  
  15.     return 0;
  16. }
  17. //---------------------------------------------------------------------------
  18.