View Javadoc

1   /* Copyright (c) 2007 Timothy Wall, All Rights Reserved
2    *
3    * This library is free software; you can redistribute it and/or
4    * modify it under the terms of the GNU Lesser General Public
5    * License as published by the Free Software Foundation; either
6    * version 2.1 of the License, or (at your option) any later version.
7    * <p/>
8    * This library is distributed in the hope that it will be useful,
9    * but WITHOUT ANY WARRANTY; without even the implied warranty of
10   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11   * Lesser General Public License for more details.  
12   */
13  
14  
15  package org.ximtec.igesture.io.win32;
16  
17  public interface W32Errors {
18  
19     int NO_ERROR = 0;
20     int ERROR_INVALID_FUNCTION = 1;
21     int ERROR_FILE_NOT_FOUND = 2;
22     int ERROR_PATH_NOT_FOUND = 3;
23  }