From 8b09140befbb799a55f52985314ac9c8d1e410ad Mon Sep 17 00:00:00 2001 From: Brian Matzon Date: Thu, 16 Sep 2004 21:11:22 +0000 Subject: [PATCH] add net enums --- src/java/org/lwjgl/fmod3/FSound.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/java/org/lwjgl/fmod3/FSound.java b/src/java/org/lwjgl/fmod3/FSound.java index bdabfc94..5d7e0ef8 100644 --- a/src/java/org/lwjgl/fmod3/FSound.java +++ b/src/java/org/lwjgl/fmod3/FSound.java @@ -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 // ======================================================