fixed parameter-list of lmms_plugin_main to work properly
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@741 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2008-02-29 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
|
||||
|
||||
* plugins/midi_import/midi_import.cpp:
|
||||
* plugins/flp_import/flp_import.cpp:
|
||||
fixed parameter-list of lmms_plugin_main to work properly
|
||||
|
||||
2008-02-29 Paul Giblock <drfaygo/at/gmail/dot/com>
|
||||
|
||||
* include/lcd_spinbox.h:
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 5.8 KiB |
@@ -926,7 +926,7 @@ extern "C"
|
||||
{
|
||||
|
||||
// neccessary for getting instance out of shared lib
|
||||
plugin * lmms_plugin_main( void * _data )
|
||||
plugin * lmms_plugin_main( model *, void * _data )
|
||||
{
|
||||
return( new flpImport( static_cast<const char *>( _data ) ) );
|
||||
}
|
||||
|
||||
@@ -624,7 +624,7 @@ extern "C"
|
||||
{
|
||||
|
||||
// neccessary for getting instance out of shared lib
|
||||
plugin * lmms_plugin_main( void * _data )
|
||||
plugin * lmms_plugin_main( model *, void * _data )
|
||||
{
|
||||
return( new midiImport( static_cast<const char *>( _data ) ) );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user