add net enums

This commit is contained in:
Brian Matzon 2004-09-16 21:11:22 +00:00
parent af66408d3d
commit 8b09140bef
1 changed files with 15 additions and 0 deletions

View File

@ -335,6 +335,21 @@ public class FSound {
/** An Advanced Streaming Format header line */
public static final int FSOUND_TAGFIELD_ASF = 5;
/** Stream hasn't connected yet */
public static final int FSOUND_STREAM_NET_NOTCONNECTED = 0;
/** Stream is connecting to remote host */
public static final int FSOUND_STREAM_NET_CONNECTING = 1;
/** Stream is buffering data */
public static final int FSOUND_STREAM_NET_BUFFERING = 2;
/** Stream is ready to play */
public static final int FSOUND_STREAM_NET_READY = 3;
/** Stream has suffered a fatal error */
public static final int FSOUND_STREAM_NET_ERROR = 4;
// Pre Initialization / Initialization / Enumeration
// ======================================================