home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_11 / 8n11040a < prev    next >
Text File  |  1990-09-19  |  1KB  |  35 lines

  1.  
  2.  
  3.  
  4.  
  5.          Access to Queue
  6.  
  7.          DosCreateQueue            Creates a queue, assigns queue
  8.                                    name, and determines owner process.
  9.          DosOpenQueue              Opens an existing queue to allow a
  10.                                    client to add records.  Returns
  11.                                    queue handle and owner PID.
  12.          DosCloseQueue             Terminates access to a queue and
  13.                                    invalidates client handle.  If
  14.                                    called by the owner, the queue is
  15.                                    destroyed.
  16.  
  17.          Queue I/O
  18.  
  19.          DosReadQueue             Removes a record from the queue.
  20.                                   May only be called by owner.
  21.          DosPeekQueue             Access queue records without
  22.                                   removing them from queue.  May only
  23.                                   be called by owner.
  24.          DosWriteQueue            Adds a record to a queue.
  25.  
  26.          Miscellaneous Queue Functions
  27.  
  28.          DosPurgeQueue            Discards all records currently in
  29.                                   the queue.  May only be called by
  30.                                   owner.
  31.          DosQueryQueue            Returns the number of records
  32.                                   currently in the queue.
  33.  
  34.  
  35.