misc/libopenalbridge/commands.h
changeset 3697 d5b30d6373fc
parent 3514 59dbd31e9953
--- a/misc/libopenalbridge/commands.h	Sat Jul 31 10:52:43 2010 +0200
+++ b/misc/libopenalbridge/commands.h	Sat Jul 31 11:24:53 2010 +0200
@@ -22,34 +22,34 @@
 #ifdef __CPLUSPLUS
 extern "C" {
 #endif
-    
+
     // play, pause, stop a single sound source
     void openal_pausesound        (unsigned int index);
     void openal_stopsound         (unsigned int index);
-    
+
     // play a sound and set whether it should loop or not (0/1)
     void openal_playsound         (unsigned int index);
-    
+
     void openal_freesound         (unsigned int index);
-    
+
     // set or unset the looping property for a sound source
     void openal_toggleloop        (unsigned int index);
-    
+
     // set position and volume of a sound source
     void openal_setposition       (unsigned int index, float x, float y, float z);
     void openal_setvolume         (unsigned int index, float gain);
-    
+
     // set volume for all sounds (gain interval is [0-1])
     void openal_setglobalvolume   (float gain);
-    
+
     // mute or unmute all sounds
     void openal_togglemute        (void);
-    
+
     // fade effect,
     void openal_fade              (unsigned int index, unsigned short int quantity, al_fade_t direction);
-    
+
 #ifdef __CPLUSPLUS
 }
 #endif
 
-#endif /*_OALB_COMMANDS_H*/
\ No newline at end of file
+#endif /*_OALB_COMMANDS_H*/