Add a non-const compatibility BRoster::Launch() call

BartLAuncher needs this one...
This commit is contained in:
François Revol 2014-08-09 01:20:25 +02:00
parent 3aeed6607c
commit d53fe46d17

View File

@ -992,6 +992,15 @@ Launch__C7BRosterP9entry_refP8BMessagePl(BRoster* roster, entry_ref* ref,
{
return roster->BRoster::Launch(ref, initialMessage, NULL);
}
/*! Just here for providing binary compatibility
(for example "BartLauncher" needs this)
*/
extern "C" status_t
Launch__C7BRosterP9entry_refiPPcPl(BRoster* roster, entry_ref* ref,
int argc, char * const *args, team_id *app_team)
{
return roster->BRoster::Launch(ref, argc, args, app_team);
}
#endif // __GNUC__ == 2