rnd-20001128-1-src
[rocksndiamonds.git] / src / system.h
index 77befc6592b32b85c86f1c11ca0c0634d9707164..0e84953a407dad736dc1d4f5885a9a164bb82619 100644 (file)
@@ -28,7 +28,7 @@
 #endif
 
 
-/* system-wide contant definitions */
+/* contant definitions */
 
 #define DEFAULT_DEPTH                  0
 
 #define FULLSCREEN_AVAILABLE           TRUE
 
 
-/* system-wide type definitions */
+/* type definitions */
 
 typedef int (*EventFilter)(const Event *);
 
 
-/* system-wide function definitions */
+/* structure definitions */
+
+struct SystemInfo
+{
+  boolean audio_available;
+  boolean audio_loops_available;
+  int audio_process_id;
+  int audio_process_pipe[2];
+  int audio_fd;
+};
+
+
+/* function definitions */
 
 inline void InitBufferedDisplay(DrawBuffer *, DrawWindow *);
 inline int GetDisplayDepth(void);