2012-10-13 00:25:22 +02:00
|
|
|
/*
|
|
|
|
TinyLoad - a simple region free (original) game launcher in 4k
|
|
|
|
|
|
|
|
# This code is licensed to you under the terms of the GNU GPL, version 2;
|
|
|
|
# see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This code comes from HBC's stub which was based on dhewg's geckoloader stub */
|
|
|
|
// Copyright 2008-2009 Andre Heider <dhewg@wiibrew.org>
|
2012-10-14 19:18:13 +02:00
|
|
|
// Copyright 2008-2009 Hector Martin <marcan@marcansoft.com>
|
|
|
|
#ifndef _VIDEO_TINYLOAD_H_
|
|
|
|
#define _VIDEO_TINYLOAD_H_
|
2012-10-13 00:25:22 +02:00
|
|
|
|
2012-10-14 19:18:13 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
2012-10-13 00:25:22 +02:00
|
|
|
|
2012-10-14 19:18:13 +02:00
|
|
|
void video_init(void);
|
2012-10-20 00:01:30 +02:00
|
|
|
void video_clear(void);
|
2012-10-14 19:18:13 +02:00
|
|
|
void prog(int p);
|
|
|
|
void prog10(void);
|
|
|
|
void setprog(int p);
|
2012-10-13 00:25:22 +02:00
|
|
|
|
2012-10-14 19:18:13 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2012-10-13 00:25:22 +02:00
|
|
|
|
|
|
|
#endif
|