rehash.h 978 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. ---------------------------------------------------------------------------
  3. Copyright (c) 2003, Dominik Reichl <dominik.reichl@t-online.de>, Germany.
  4. All rights reserved.
  5. Distributed under the terms of the GNU General Public License v2.
  6. This software is provided 'as is' with no explicit or implied warranties
  7. in respect of its properties, including, but not limited to, correctness
  8. and/or fitness for purpose.
  9. ---------------------------------------------------------------------------
  10. */
  11. #ifndef ___REHASH_H___
  12. #define ___REHASH_H___
  13. #include "rhsyscfg.h"
  14. #define SZ_REHASH_VERSION "1.0.1"
  15. #define SZ_REHASH_HOMEPAGE "http://www.reichlsoft.de.vu"
  16. #define RH_MAX_PATH 2048
  17. #define RH_MAX_BUFFER 2048
  18. #define RH_SUCCESS 0
  19. #define RH_NO_ARGS 1
  20. #define RH_NO_PATH 2
  21. #define RH_CANNOT_OPEN_FILE 3
  22. #define RH_INVALID_PATH 4
  23. #define RH_NO_PATTERN_MATCH 5
  24. #define RH_DIRECTORY_ERROR 6
  25. void printInfo();
  26. #endif // ___REHASH_H___