home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / Ipcdemos / README.TXT < prev    next >
Encoding:
Text File  |  1999-01-26  |  1.2 KB  |  41 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5.  
  6. TITLE:
  7.   IPCDEMOS
  8.  
  9. DESCRIPTION:
  10.   Demonstrates interprocess communication in Win32.
  11.  
  12. DEMONSTRATES:
  13.   + TThread
  14.   + TObject derived classes: TEvent, TMutex, TSharedMem, TSemaphore
  15.   + Exception derived classes
  16.   + Shared memory between 32-bit processes
  17.   + Thread synchronization
  18.   + Exception handling
  19.  
  20. COMMENTS:
  21.   
  22.   This program along with the Client.pof project, demonstrate a number
  23.   of topics in Win32 programming. Threads, Events, Mutexes, and Shared
  24.   memory are all used to provide communication between this monitor and
  25.   it's clients, see IPCThrd.cpp.
  26.  
  27.   To Run, compile this project and the Client.cpp project.  Run one
  28.   instance of the monitor and then run several instances of the client.
  29.   You can switch between clients by clicking on the Client's window or
  30.   by selecting it from the Client menu in the monitor.
  31.  
  32.   Topics Covered:
  33.  
  34.     Interprocess Communication
  35.     Threads
  36.     Events
  37.     Mutexes
  38.     Shared Memory
  39.     Single instance EXE.
  40.  
  41.