/hudson-core/src/main/java/hudson/util/jna/WINERROR.java

http://github.com/hudson/hudson · Java · 28 lines · 8 code · 1 blank · 19 comment · 0 complexity · c2fc5045dc5d7fe9fce8e40e5998f1de MD5 · raw file

  1. /*
  2. Copyright (c) 2007 Thomas Boerkel, All Rights Reserved
  3. Disclaimer:
  4. ===========
  5. This code is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. This code is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. */
  14. package hudson.util.jna;
  15. /**
  16. *
  17. * @author TB
  18. */
  19. public interface WINERROR {
  20. public final static int ERROR_SUCCESS = 0;
  21. public final static int NO_ERROR = 0;
  22. public final static int ERROR_FILE_NOT_FOUND = 2;
  23. public final static int ERROR_MORE_DATA = 234;
  24. public final static int ERROR_NO_MORE_ITEMS = 259;
  25. }