coar        99/01/25 08:30:40

  Modified:    docs     apr-function.txt
  Log:
        Add a couple of missed functions..
  
  Submitted by: Ryan Bloom <[EMAIL PROTECTED]>
  Reviewed by:  Ken Coar
  
  Revision  Changes    Path
  1.5       +14 -5     apache-apr/docs/apr-function.txt
  
  Index: apr-function.txt
  ===================================================================
  RCS file: /home/cvs/apache-apr/docs/apr-function.txt,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- apr-function.txt  1999/01/22 21:11:48     1.4
  +++ apr-function.txt  1999/01/25 16:30:40     1.5
  @@ -120,11 +120,6 @@
        Close the specified file descriptor
        Arguments:
        arg 1)  file descriptor of file to be closed.
  - APRStatus apr_opendir(char *, APRDir *)  
  -     Opens the specified directory stream.           
  -     Arguments:
  -     arg 1)  path of the directory to be opened.
  -     arg 2) abstracted directory descriptor structure.
    APRStatus apr_read(APRFile, void *, APRUInt64, APRUInt64 *)
        Read n bytes from file and store in buffer.
        Arguments:
  @@ -168,6 +163,20 @@
        Arguments:
        arg 1)  path to file 
        arg 3)  Which access permissions to check for.
  + APRStatus apr_opendir(char *, APRDir *)  
  +     Opens the specified directory stream.           
  +     Arguments:
  +     arg 1)  path of the directory to be opened.
  +     arg 2) abstracted directory descriptor structure.
  + APRStatus apr_closedir(APRDir *)  
  +     Opens the specified directory stream.           
  +     Arguments:
  +     arg 1) abstracted directory descriptor structure to be closed.
  + APRStatus apr_readdir(APRDir *, APRDirent *)
  +     Retrieve the next directory entry from the specified directory.
  +     Arguments:
  +     arg 1) Abstracted directory descriptor to read from.
  +     arg 2) the next directory entry.
   
   ---------------------------Network I/O
    APRStatus apr_send(APRSocket, const void *, APRUInt64, APRUInt64 *)
  
  
  

Reply via email to