[CHG] Private functions

This commit is contained in:
Crayon2000 2010-09-28 18:54:50 +00:00
parent edaf628725
commit 33d1f067b6
3 changed files with 29 additions and 3 deletions

View file

@ -28,7 +28,7 @@ THE SOFTWARE.
#define __GRRLIB_CORE__
#include <grrlib.h>
#include "grrlib/GRRLIB_ttf.h"
#include "grrlib/GRRLIB_private.h"
#define DEFAULT_FIFO_SIZE (256 * 1024) /**< GX fifo buffer size. */

View file

@ -128,8 +128,8 @@ void GRRLIB_Render (void);
//------------------------------------------------------------------------------
// GRRLIB_snapshot.c - Create a texture containing a snapshot of a part of the framebuffer
void GRRLIB_Screen2Texture (int posx, int posy, GRRLIB_texImg *tex, bool clear);
void GRRLIB_CompoStart (void);
void GRRLIB_CompoEnd(int posx, int posy, GRRLIB_texImg *tex);
void GRRLIB_CompoStart (void);
void GRRLIB_CompoEnd(int posx, int posy, GRRLIB_texImg *tex);
//------------------------------------------------------------------------------
// GRRLIB_texEdit.c - Modifying the content of a texture

View file

@ -20,5 +20,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------*/
/*
* @file GRRLIB_private.h
* The symbols declared in this file are PRIVATE.
* They are not part of the GRRLIB public
* interface, and are not recommended for use by regular applications.
* Some of them may become public in the future; others may stay private,
* change in an incompatible way, or even disappear.
*/
#ifndef __GRRLIB_PRIVATE_H__
#define __GRRLIB_PRIVATE_H__
#include <ogc/libversion.h>
/**
* Used for version checking.
* @param a Major version number.
* @param b Minor version number.
* @param c Revision version number.
*/
#define GRRLIB_VERSION(a,b,c) ((a)*65536+(b)*256+(c))
//------------------------------------------------------------------------------
// GRRLIB_ttf.c - FreeType function for GRRLIB
int GRRLIB_InitTTF();
void GRRLIB_ExitTTF();
#endif // __GRRLIB_PRIVATE_H__