~ubuntu-branches/ubuntu/precise/arduino/precise

« back to all changes in this revision

Viewing changes to src/processing/app/windows/WINERROR.java

  • Committer: Bazaar Package Importer
  • Author(s): Scott Howard
  • Date: 2010-04-13 22:32:24 UTC
  • Revision ID: james.westby@ubuntu.com-20100413223224-jduxnd0xxnkkda02
Tags: upstream-0018+dfsg
ImportĀ upstreamĀ versionĀ 0018+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * WINERROR.java
 
3
 *
 
4
 * Created on 7. August 2007, 08:09
 
5
 *
 
6
 * To change this template, choose Tools | Template Manager
 
7
 * and open the template in the editor.
 
8
 */
 
9
 
 
10
package processing.app.windows;
 
11
 
 
12
 
 
13
/**
 
14
 *
 
15
 * @author TB
 
16
 */
 
17
public interface WINERROR {
 
18
  public final static int ERROR_SUCCESS = 0;
 
19
  public final static int NO_ERROR = 0;
 
20
  public final static int ERROR_FILE_NOT_FOUND = 2;
 
21
  public final static int ERROR_MORE_DATA = 234;
 
22
}