home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 13 / MA_Cover_13.bin / source / c / nfsd / src / nfsd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-28  |  431 b   |  24 lines

  1. /*  Headers for nfsd
  2.  
  3.     ©1998, 1999 Joseph Walton
  4.  
  5.     This software is distributed under the terms of the GNU General Public
  6.     License; either version 2 of the License, or (at your option) any
  7.     later version.
  8. */
  9.  
  10. #ifndef NFSD_H
  11. #define NFSD_H
  12.  
  13. #include "nfs.h"
  14.  
  15. extern BOOL verbose;
  16.  
  17. /* Change this for a whole bunch of extra output */
  18. #define DEBUG(x) ()
  19. //#define DEBUG(x) (x)
  20.  
  21. #define VERBOSE(x) if(verbose){x;}
  22.  
  23. #endif
  24.