Changeset 526
- Timestamp:
- 04/05/11 09:21:34 (1 year ago)
- Files:
-
- branches/Derelict2/DerelictSFML/derelict/sfml/afuncs.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/audio.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/graphics.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/network.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/system.d (modified) (1 diff)
- branches/Derelict2/DerelictSFML/derelict/sfml/window.d (modified) (1 diff)
- branches/Derelict2/DerelictUtil/derelict/util/compat.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Derelict2/DerelictSFML/derelict/sfml/afuncs.d
r427 r526 130 130 131 131 // SoundRecorder.h 132 sfSoundRecorder* function(sfSoundRecorderStartCallback, sfSoundRecorderProcessCallback, sfSoundRecorderStopCallback ) sfSoundRecorder_Create;132 sfSoundRecorder* function(sfSoundRecorderStartCallback, sfSoundRecorderProcessCallback, sfSoundRecorderStopCallback, void*) sfSoundRecorder_Create; 133 133 void function(sfSoundRecorder*) sfSoundRecorder_Destroy; 134 134 void function(sfSoundRecorder*, uint) sfSoundRecorder_Start; branches/Derelict2/DerelictSFML/derelict/sfml/audio.d
r404 r526 46 46 super( 47 47 "csfml-audio.dll", 48 "libcsfml-audio.so ",49 " "48 "libcsfml-audio.so,libcsfml-audio.so.1.6", 49 "../Frameworks/csfml-audio.framework/csfml-audio, /Library/Frameworks/csfml-audio.framework/csfml-audio, /System/Library/Frameworks/csfml-audio.framework/csfml-audio" 50 50 ); 51 51 } branches/Derelict2/DerelictSFML/derelict/sfml/graphics.d
r403 r526 46 46 super( 47 47 "csfml-graphics.dll", 48 "libcsfml-graphics.so ",49 " "48 "libcsfml-graphics.so,libcsfml-graphics.so.1.6", 49 "../Frameworks/csfml-graphics.framework/csfml-graphics, /Library/Frameworks/csfml-graphics.framework/csfml-graphics, /System/Library/Frameworks/csfml-graphics.framework/csfml-graphics" 50 50 ); 51 51 } branches/Derelict2/DerelictSFML/derelict/sfml/network.d
r406 r526 46 46 super( 47 47 "csfml-network.dll", 48 "libcsfml-network.so ",49 " "48 "libcsfml-network.so,libcsfml-network.so.1.6", 49 "../Frameworks/csfml-network.framework/csfml-network, /Library/Frameworks/csfml-network.framework/csfml-network, /System/Library/Frameworks/csfml-network.framework/csfml-network" 50 50 ); 51 51 } branches/Derelict2/DerelictSFML/derelict/sfml/system.d
r397 r526 46 46 super( 47 47 "csfml-system.dll", 48 "libcsfml-system.so ",49 " "48 "libcsfml-system.so,libcsfml-system.so.1.6", 49 "../Frameworks/csfml-system.framework/csfml-system, /Library/Frameworks/csfml-system.framework/csfml-system, /System/Library/Frameworks/csfml-system.framework/csfml-system" 50 50 ); 51 51 } branches/Derelict2/DerelictSFML/derelict/sfml/window.d
r396 r526 46 46 super( 47 47 "csfml-window.dll", 48 "libcsfml-window.so ",49 " "48 "libcsfml-window.so,libcsfml-window.so.1.6", 49 "../Frameworks/csfml-window.framework/csfml-window, /Library/Frameworks/csfml-window.framework/csfml-window, /System/Library/Frameworks/csfml-window.framework/csfml-window" 50 50 ); 51 51 } branches/Derelict2/DerelictUtil/derelict/util/compat.d
r506 r526 123 123 version(D_Version2) 124 124 { 125 mixin("return indexOf(str, match);");125 mixin("return cast(int)indexOf(str, match);"); 126 126 } 127 127 else
