home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mavcl130.zip / MAVDRSR.HPP < prev    next >
C/C++ Source or Header  |  1995-08-15  |  457b  |  23 lines

  1. /*  File: MAVDRSR.HPP      Updated: Tue Aug 15 15:55:07 1995
  2. Copyright (c) Fabrizio Aversa
  3. ===========================================================*/
  4. #ifndef MAVDRSR_HPP
  5. #define MAVDRSR_HPP
  6.  
  7. class _Export DirServ
  8. {
  9.    private:
  10.    HDIR FindHandle;
  11.    INT iCount;
  12.    APIRET rc; /* Return code from various functions */
  13.    IString strPath;
  14.    
  15.    public:
  16.    IString getNext();
  17.    INT errorCode();
  18.    DirServ(IString &);
  19.    
  20. };
  21.  
  22. #endif
  23.