diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2016-11-24 16:23:54 -0500 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2016-11-24 16:23:54 -0500 |
| commit | 308757a0a5596491c80b0596bb4fa8e7299e78e2 (patch) | |
| tree | e40ee2c37fbeeacef663eefad9cb3efa2709dc73 /apps | |
| parent | 84b550b7856ae98c5d4655d171415aa8198dec95 (diff) | |
| parent | 56c9984511f016eab7e1278ba9e40d88bb59a162 (diff) | |
| download | rockbox-308757a0a5596491c80b0596bb4fa8e7299e78e2.zip rockbox-308757a0a5596491c80b0596bb4fa8e7299e78e2.tar.gz rockbox-308757a0a5596491c80b0596bb4fa8e7299e78e2.tar.bz2 rockbox-308757a0a5596491c80b0596bb4fa8e7299e78e2.tar.xz | |
Merge branch 'puzzles' into working
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/puzzles.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/plugins/puzzles.c b/apps/plugins/puzzles.c new file mode 100644 index 0000000..082e5b4 --- /dev/null +++ b/apps/plugins/puzzles.c @@ -0,0 +1,33 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2009 Franklin Wei + * + * Overlay loader stub plugin for puzzles + * + * 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. + * + ****************************************************************************/ +#include "plugin.h" + +#include "lib/overlay.h" + + + +/* this is the plugin entry point */ +enum plugin_status plugin_start(const void* parameter) +{ + return run_overlay(parameter, PLUGIN_GAMES_DIR "/puzzles.ovl", "Puzzles"); +} |