rockbox/apps/plugins/view_text.c
Christian Soffke f316535684 plugins: view-text, zxbox: fix panic when called without parameter
Change-Id: Ife654e6dcb29916f661ce0c2232f4060ac02f5d2
2025-12-21 23:58:04 -05:00

37 lines
1.3 KiB
C

/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2002 Björn Stenberg
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
/* welcome to the example rockbox plugin */
/* mandatory include for all plugins */
#include "plugin.h"
#include "lib/simple_viewer.h"
/* this is the plugin entry point */
enum plugin_status plugin_start(const void* parameter)
{
if (!parameter)
return PLUGIN_ERROR;
char** title_and_text = (char**)parameter;
view_text(title_and_text[0], title_and_text[1]);
return PLUGIN_OK;
}